* {
  padding: 0;
  margin: 0;
  text-align: center;
}

body {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, orange, #ffffff, #17ff68);
}

h1 {
  background-color: #081b31;
  color: #ffffff;
  height: 5rem;
  line-height: 5rem;
  text-shadow: 0 0 1rem rgba(255, 255, 255, 0.4);
}

.choice {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice:hover {
  cursor: pointer;
  background-color: #081b31;
}

img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  /* changes mar */
  margin-top: 2rem;
}

.score-board {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  font-size: 2rem;
  margin-top: 5rem;
}

.common {
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

#user-score,
#comp-score {
  font-size: 3rem;
}

.msg-container {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

#msg {
  padding: 1rem;
  background-color: #081b31;
  color: #fff;
  font-size: 2rem;
  display: inline;
  border-radius: 2rem;
}

@media (max-width: 600px) {
  h1 {
    height: 4rem;
    line-height: 4rem;
    font-size: 1.5rem;
  }

  .choice {
    height: 120px;
    width: 120px;
  }

  img {
    height: 110px;
    width: 110px;
  }

  .choices {
    gap: 1rem;
    flex-direction: column;
  }

  .score-board {
    font-size: 1.5rem;
    gap: 1rem;
  }

  #user-score,
  #comp-score {
    font-size: 1.5rem;
  }

  #msg {
    font-size: 1.0rem;
    padding: 0.5rem;
  }
}

/* Tablet Devices (between 600px and 1024px wide) */
@media (min-width: 601px) and (max-width: 1024px) {
  h1 {
    height: 4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
  }

  .choice {
    height: 140px;
    width: 140px;
  }

  img {
    height: 130px;
    width: 130px;
  }

  .choices {
    gap: 2rem;
  }

  .score-board {
    font-size: 1.8rem;
    gap: 2rem;
  }

  #user-score,
  #comp-score {
    font-size: 2.0rem;
  }

  #msg {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}

/* Laptops (between 1025px and 1440px wide) */
@media (min-width: 1025px) and (max-width: 1440px) {
  h1 {
    height: 5rem;
    line-height: 5rem;
    font-size: 2.2rem;
  }

  .choice {
    height: 150px;
    width: 150px;
  }

  img {
    height: 140px;
    width: 140px;
  }

  .choices {
    gap: 2.5rem;
  }

  .score-board {
    font-size: 2rem;
    gap: 2.5rem;
  }

  #user-score,
  #comp-score {
    font-size: 3rem;
  }

  #msg {
    font-size: 2rem;
    padding: 1rem;
  }
}
