* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  padding: 5px;
  margin: 5px;
  border: 3px solid black;
  border-radius: 15px;
  max-height: 100%;
}

header {
  padding: 5px;
  margin: 5px;
  margin-bottom: 0px;
  border-radius: 15px;
  height: 40%;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section {
  height: 60%;
  padding: 5px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid black;
  border-radius: 15px;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

h3 {
  text-align: center;
}

.opt {
  display: flex;
  align-items: center;
  gap: 25px;
}

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

.choice:hover {
  background-color: black;
  cursor: pointer;
}

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

.score-board {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.user,
.comp {
  text-align: center;
}

.ms-con {
  padding: 10px;
  height: 20%;
  width: 100%;
  background-color: black;
  border-radius: 25px;
}

.mes {
  text-align: center;
  color: white;
  font-size: 1.5rem;
}

.hbt {
  width: 100px;
  height: 25px;
  border-radius: 20px;
}

.hbt:hover {
  border: 3px solid white;
  background-color: black;
  color: white;
}

footer {
  height: 7rem;
  padding: 5px;
  margin: 5px;
  margin-bottom: 0px;
  border-radius: 15px;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
}

@media screen and (max-width: 425px) {
  header {
    gap: 6.5px;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.8rem;
  }

  .choice {
    height: 80px;
    width: 80px;
    img {
      height: 70px;
      width: 70px;
    }
  }

  .mes {
    font-size: 0.8rem;
  }
}
