@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Lobster&family=Platypi:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: "Comfortaa", serif;
}

h3 {
  height: 60px;
  line-height: 60px;
  color: antiquewhite;
  font-size: 2rem;
  background-color: darkslategrey;
}

.Choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.choice {
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
}

.choice:hover {
  transform: scale(0.9);
  cursor: pointer;
}

.score-borad {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  font-size: 2rem;
}

#User-score,
#Comp-score {
  font-size: 2.5rem;
}
.msg-container {
  margin-top: 3rem;
}
#msg {
  display: inline;
  background-color: darkslategrey;
  color: antiquewhite;
  padding: 1rem;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 8px;
  /* cursor: pointer; */
}


/* Media Query */

@media screen and (max-width:320px) {
  body{
    overflow-x: hidden;
  }
  h3 {
    height: 60px;
    line-height: 60px;
    color: antiquewhite;
    font-size: 1.3rem;
    background-color: darkslategrey;
    /* display: inline; */
    width: 100%;
  }
  
  .Choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .choice img{
    width: 90px;
  }
  
  .choice {
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
  }
  
  .choice:hover {
    transform: scale(0.9);
    cursor: pointer;
  }
  
  .score-borad {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
  }
  
  #User-score,
  #Comp-score {
    font-size: 1.2rem;
  }
  .msg-container {
    margin-top: 3rem;
  }
  #msg {
    display: inline;
    background-color: darkslategrey;
    color: antiquewhite;
    padding: 1rem;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 8px;
  }
}

@media screen and (min-width:321px) and (max-width:375px) {
  body{
    overflow-x: hidden;
  }
  h3 {
    height: 60px;
    line-height: 60px;
    color: antiquewhite;
    font-size: 1.5rem;
    background-color: darkslategrey;
    /* display: inline; */
    width: 100%;
  }
  
  .Choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .choice img{
    width: 100px;
  }
  
  .choice {
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
  }
  
  .choice:hover {
    transform: scale(0.9);
    cursor: pointer;
  }
  
  .score-borad {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    font-size: 1.3rem;
  }
  
  #User-score,
  #Comp-score {
    font-size: 1.7rem;
  }
  .msg-container {
    margin-top: 3rem;
  }
  #msg {
    display: inline;
    background-color: darkslategrey;
    color: antiquewhite;
    padding: 1rem;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 8px;
  }
}
