:root {
  --lightblue: rgb(175, 207, 255);
  --darkblue: rgb(18, 31, 103, 1);
  --lightpink: rgb(255, 135, 135);
}

body {
  background: var(--darkblue);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.style1 {
  color: var(--lightblue);
  font-family: Squada One;
  font-weight: Regular;
  font-size: 96px;
  opacity: 1;
  text-align: center;
}
.style3 {
  color: var(--lightblue);
  font-family: Montserrat;
  font-weight: bolder;
  font-size: 48px;
  opacity: 1;
  text-align: center;
}
.name {
  color: white;
}

.button {
  color: white;
  text-decoration: none;
  background: var(--lightpink);
  font-size: 40px;
  font-family: Montserrat;
  text-align: center;
  border-radius: 15px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto 0 auto;
}

.column {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  font-size: 40px;
}

.symptom {
  color: var(--darkblue);
}

.darkblue {
  color: var(--darkblue);
}

label {
  margin-left: 100px;
  font-family: Montserrat;
}

input[type="checkbox"] {
  margin-left: 100px;
  transform: scale(2);
}

label {
  display: inline;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}