@charset "utf-8";
body {
  font-family: sans-serif;
  line-height: 1.7;
  font-size: 1.05rem;
}
main {
  padding: 5%;
}
img,
video {
  width: 100%;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 3rem 0 1.5rem;
  border-left: 4px solid black;
  padding-left: 0.8rem;
}
p {
  margin-bottom: 1.5rem;
}
.marker {
  background: rgb(255, 255, 206);
}
.large {
  font-size: 1.2rem;
}
.small {
  font-size: 0.7rem;
}
.bold {
  font-weight: bold;
}
.pr {
  font-size: 0.8rem;
  text-align: right;
  margin-bottom: 1.5rem;
}
.note {
  font-size: 0.7rem;
  margin-bottom: 1.5rem;
}

.voice .voice-text {
  border: 1px solid grey;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.voice .voice-age {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta {
  animation: wave 2s infinite;
}
@keyframes wave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
footer {
  text-align: center;
}
footer a {
  color: rgb(0, 88, 176);
  text-decoration: underline;
  font-size: 0.7rem;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 769px) {
  body {
    width: 650px;
    margin: auto;
  }
  a:hover {
    opacity: 0.8;
  }
}
