*{
    margin: 0;
    padding: 0;
    text-align: center;
}
body{
    background-color: antiquewhite;
}
h1{
    background-color: #dd5d0e;
    color: #fff;
    height: 5rem;
     line-height: 5rem;
}
.choice{
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.choices{
    display: flex;
     justify-content: center ;
     align-items: center;
     gap: 4rem;
     margin-top: 5rem;
}
.choice:hover{
    cursor: pointer;
    background-color: #dd5d0e;
}
.score-board{
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin-top: 3rem;
gap: 6rem;
}
#user-score,#comp-score{
    font-size: 4rem;
}
.msg-container{
    margin-top: 5rem;
}

#msg{
background-color: #dd5d0e;
color: #fff;
font-size: 2rem;
display: inline;
padding: 1rem;
border-radius: 1rem;
}
.btn{
margin-top: 5rem;
}

#resetBtn{
 background-color: #dd5d0e;
color: #fff;
font-size: 1.5rem;
display: inline;
padding: 0.8rem;
border-radius: 1rem;
}
#resetBtn:hover{
    background-color: #773309;
    cursor: pointer;
}

/* Tablets */
@media (max-width: 768px) {
  .choices {
    gap: 2rem;
    margin-top: 3rem;
  }

  .choice {
    height: 130px;
    width: 130px;
  }

  img {
    height: 115px;
    width: 115px;
  }

  .score-board {
    gap: 3rem;
    font-size: 1.5rem;
  }

  #user-score,
  #comp-score {
    font-size: 3rem;
  }

  #msg {
    font-size: 1.5rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
    height: auto;
    line-height: normal;
    padding: 1rem 0;
  }

  .choices {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .choice {
    height: 110px;
    width: 110px;
  }

  img {
    height: 95px;
    width: 95px;
  }

  .score-board {
    gap: 2rem;
    margin-top: 2rem;
  }

  #user-score,
  #comp-score {
    font-size: 2.5rem;
  }

  .msg-container {
    margin-top: 3rem;
  }

  #msg {
    font-size: 1.3rem;
    padding: 0.7rem 1rem;
  }

  .btn {
    margin-top: 3rem;
  }

  #resetBtn {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
  }
}
