* {
  box-sizing: border-box;
  margin: 0;
}

.container {
  max-width: 960px;
  padding: 0px 24px;
  margin: 0 auto;
}

.hero__headshot {
  display: block;
  width: 176px;
  height: 176px;
  border-radius: 1000px;
  background: hsl(0, 0%, 96%);
}

.text {
  font-family: "Merriweather", serif;
  color: hsl(0, 0%, 0%);
}

.text_style_h1 {
  font-size: 32px;
}

.hero__body {
  text-align: center;
  max-width: 680px;
}

.text_style_body-1 {
  font-size: 16px;
  line-height: 24px;
}

.hero__button {
  color: hsl(210, 100%, 50%);
  text-decoration: none;
  padding-bottom: 2px;
}

.hero__button:hover {
  padding-bottom: 0px;
  border-bottom: 2px solid hsl(210, 100%, 50%);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 24px;
}

.hero__headline {
  text-align: center;
}

@media (min-width: 720px) {
  .text_style_h1 {
    font-size: 36px;
  }

  .hero__headshot {
    width: 192px;
    height: 192px;
  }
}
