:root {
  --blackish: #222;
  --whiteish: #e5e5e5;
  --red: #ff5e56;
  --yellow: #ffbd2e;
  --green: #27c93f;
  --backgroundSize: 700px;
}

body {
  box-sizing: border-box;
  margin: 0;
  height: 100vh;
  /*background-image: url('../../assets/img/blackandwhite.jpg');*/
  background-image: url('../../assets/img/blueandwhite.jpg');
  /*background-image: url('../../assets/img/greenandwhite.jpg');*/
  /*background-image: url('../../assets/img/redandwhite.jpg');*/
  background-image: url('../../assets/img/burpleandwhite.jpg');
  background-size: var(--backgroundSize);
  color: var(--whiteish);
  display: grid;
  place-items: center;
  animation: movingBackground 10s linear infinite;
}


@keyframes movingBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: var(--backgroundSize) var(--backgroundSize);
  }
}

.modal {
  width: clamp(50vw, 50vh, 90vw);
  height: 50vh;
  display: grid;
  place-items: center;
  border-radius: 8px;
  box-shadow: 0px 5px 20px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.topbar {
  width: 100%;
  align-content: flex-start;
  align-self: flex-start;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: hotpink;
  margin: 12px 0 0 12px;
}

.container {
  /*display: grid;*/
  /*grid-template-areas: "sidebar header header header header" "sidebar menu content content content" "sidebar menu content content content" "sidebar menu content content content" "contentmini footer footer footer footer";*/
  /*grid-template-columns: [first] 1fr [line2] .75fr [line3] .25fr [col4- start] 1fr [line5] 1fr [end];*/
  /*grid-template-rows: [row1-start] .75fr [row1-end] .25fr [third-line] 1fr [forth-line] 1fr [last-line] 1fr;*/
  gap: 5px;
  background-color: black;
  border: 2px solid white;
  border-radius: 25px;
  padding: 5px;
  width: 800px;
  max-width: 90vw;
  /*height: 600px;*/
  max-height: 90vw;
}

h2 {
  text-align: center;
  font-family: Consolas;
  color: white;
}

h3 {
  text-align: left;
  font-family: Consolas;
  color: white;
}

.btn {
  font-family: consolas;
}

