body {
  max-width: 80%;
}

.box {
  display: flex;
  flex-direction: row;
  gap: 4vh;
  padding: 4vh;
}

@media (max-width: 480px) {
  .box {
    flex-direction: column;
  }
}

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

input[type="radio"]:checked+label {
  background: #1d7484;
  color: #f9f9f9;
}

.radiobox {
  display: flex;
  flex-direction: row;
  gap: 4vh;
  padding: 4vh;
  flex-wrap: wrap;
}

.radiobutton {
  display: block;
  flex-basis: 10rem;
  height: 10rem;
  border: 1px solid #1d7484;
  margin: 5px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  line-height: 5rem;
  cursor: pointer;
  border: 2px solid #1d7484;
}

.tostagebutton{
  width: 100%;
  padding: 5px;
}