@font-face {
    font-family: "Special Elite";
    src: url("./fonts/SpecialElite-Regular.ttf");
}

body {
  background-color: lemonchiffon;
}

.elite {
  color: yellowgreen;
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
}

.fontsize {
    font-size: 3rem;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* SOUND PAGE */
.sticky-div {
  position: sticky;
  top: 0;
  background-color: lemonchiffon;
  padding-bottom: 20px;
}   
.container {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.column {
  display: flex;
  flex-direction: column;
  justify-content: inherit;
  align-items: center;
  width: 50%;
  gap: 30px;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.74); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: lemonchiffon;
  border-radius: 15px;
  margin: auto;
  padding: 20px 0px;
  border: 1px solid #888;
  width: 27%;
  text-decoration: none;
}
.modal-content a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}


/* The Close Button */
.close {
  color: #aaaaaa;
  font-size: 3rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.group-link {
  width: 70%;
  font-size: 2rem;
  background-color: lemonchiffon;
  color: #99CC00;
  text-align: center;
  border: 0.5rem solid #99CC00;
  border-radius: 0.5rem;
  padding-top: 10px;
}

.group-link:hover {
  background-color: white !important;
  color: #99CC00;
}
.board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3rem;
  color: white;
  font-weight: 800;
  font-size: 2.2rem;
  font-family: 'Trebuchet MS', sans-serif;
}
.answer {
  width: 80%;
  justify-self: center;
  place-content: center;
  text-align: center;
}
.box {
  width: 74%;
  aspect-ratio: 1;
  justify-self: center;
  align-content: center;
  background-color: blue;
  border: 1.5rem solid #000;
  border-radius: 0.5rem;
}
