/* Styling Jeopardy Game */
* {
  box-sizing: border-box;
}
body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #060ce9;
  gap: 2rem;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid green;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.startButton {
  background-color: #8d2ab5;
  padding: 10px;
  border-radius: 10px;
  width: 10vw;
  font-size: 20px;
  color: white;
}
.title {
  font-size: 50px;
  color: white;
}
.info {
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}
th {
  border: 3px solid black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  color: white;
  text-transform: capitalize;
}
tbody,
th {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  width: 15vw;
}
td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 3px solid black;
  padding: 2rem;
  font-weight: bold;
  font-size: 20px;
  color: white;
  width: 15vw;
  height: 35vh;
}
td:hover {
  background-color: navy;
}
