body {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 150%;
}

header,
section,
footer {
  padding: 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;

  .logo {
    font-weight: bolder;
    color: #ae001a;
    font-size: 1.3rem;
  }
}

section.hero {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 500px;
  color: #ae001a;
  font-size: 1.3rem;
  font-weight: bold;

  .large {
    font-size: 1.8rem;
  }
  .light {
    font-weight: lighter;
  }

  content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    div {
      margin: 25px 0;
    }
  }

  img {
    min-width: 0;
    max-width: 350px;
  }
}

footer {
  color: gray;
  font-size: 12px;
  text-align: center;
}

a {
  color: #ae001a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a.button {
  text-decoration: none;
  background-color: #ae001a;
  padding: 8px 16px;
  border-radius: 5px;
  color: white;
  display: inline-block;
}
