@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #192547;
}
h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 1px;
  margin: 20px 0px 37px 0px;
  color: white;
  text-shadow: rgba(0, 0, 0, 0.75) 0px 5px 15px;
  text-transform: uppercase;
  text-align: center;
}

.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 50px;
  flex-wrap: wrap;
}

img {
  border-radius: 13%;
  height: 10vw;
  width: 11vw;
  cursor: pointer;
  border: 15px solid white;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

img:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.choices-display{
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-direction: column;
  margin-top: 55px;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
}
button a {
  text-decoration: none;
  color: white;
}
button {
  background-color: black;
  padding: 10px 20px;
  border: none;
  color: white;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
}
.score{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: white;
  font-family: "Roboto", sans-serif;

}

@media (max-width: 600px) {
  img {
    height: 100px;
    width: 100px;
    margin: 10px;
  }
  .choices {
    gap: 10px;
  }
}
