* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/* CSS BY AII */
body {
  text-align: center;
  padding: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Choice Images */
.image {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.image img {
  height: 90px;
  width: 90px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.image img:hover {
  transform: scale(1.1);
}

/* Result Section */
.result {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.your,
.computers {
  width: 250px;
  height: 250px;
  border: 2px solid black;
  border-radius: 15px;
  overflow: hidden;
}

.result img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Score */
.scores {
  margin-top: 25px;
}

#score {
  font-size: 2rem;
  color: darkblue;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .image img {
    height: 70px;
    width: 70px;
  }

  .your,
  .computers {
    width: 180px;
    height: 180px;
  }

  #score {
    font-size: 1.5rem;
  }
}
