body {
  height: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: Arial;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

main {
  display: flex;
  justify-content: center;
}

nav {
  width: 100%;
  justify-content: center;
  display: flex;
  margin: 1em;
}

.centered {
  text-align: center;
}

button {
  background-color: #4444AA;
  border: none;
  color: white;
  cursor: pointer;
  padding: 12px 32px;
  margin: 8px 4px;
  font-size: 18px;
  border-radius: 5px;
}

input[type="radio"]:checked+.option:hover,
button:hover {
  background-color: #35358a;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.form-title {
  color: #4444AA;
  font-weight: bold;
  font-size: 20pt;
  margin-bottom: 12px;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6em, 1fr));
  background: #fff;
  width: 500px;
  max-width: 85vw;
  gap: 12px 12px;
  border-radius: 5px;
  padding: 20px 15px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
}

.option {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  cursor: pointer;
  padding: 15px 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}

.dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}

.dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #4444AA;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}

input[type="radio"] {
  display: none;
}

.option-name {
  font-size: 16px;
  color: #808080;
}

input[type="radio"]:checked+.option {
  border-color: #4444AA;
  background: #4444AA;
}

input[type="radio"]+.option:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

input[type="radio"]:checked+.option .dot {
  background: #fff;
}

input[type="radio"]:checked+.option .dot::before {
  opacity: 1;
  transform: scale(1);
}

input[type="radio"]:checked+.option .option-name {
  color: #fff;
}

div {
  font-family: Arial;
}

#logoimg {
  width: 500px;
  max-width: 90vw;
}
