body {
  background: #a6caca;
}

* {
  font-family: "Nunito Sans", sans-serif;
}

.logo {
  border-radius: 50%;
  height: 120px;
  width: 120px;
}

.selected {
  background: #1f1f1f;
  color: white;
  border-radius: 5px;
}

.card {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  aspect-ratio: 5 / 3;
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 30px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 50px 5px rgba(0,0,0,0.68); 
  box-shadow: 0px 0px 50px 5px rgba(0,0,0,0.68);
}

.question {
  font-size: 30px;
  font-weight: bold;
}

.answertype1 {
  background: #ebebeb;
  display: flex;
  padding: 5px;
  gap: 5px;
  border-radius: 5px;
  height: 50px;
}

.answertype1 button {
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}

.answertype2 {
  width: 50%;
  height: 30%;
  outline: none;
  border: 2px solid black;
  border-radius: 10px;
  padding: 5px;
}

.next {
  padding: 15px 25px;
  background: #b4d9d9;
  border-radius: 10px;
  border: none;
}

.info-buttons {
  position: absolute;
  top: 0;
  padding: 10px;
  width: calc(100% - 20px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.info-buttons span {
  font-size: larger;
  height: 40px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.info-buttons button {
  background: none;
  border: none;
  outline: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: larger;
}