:root {
  --accent-color: #ffc439;
}

html,
body,
#root {
  font-weight: 400;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 18px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 48px;
}

h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 22px;
}

#navbar {
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

a {
  font-size: 18px;
  text-decoration: none;
  color: black;
}

a:hover {
  color: gray;
}

#navbar-links a {
  font-size: 22px;
  margin-right: 10px;
}

#header {
  flex-direction: column;
  display: flex;
  height: 100vh;
}

#header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#header-content h1 {
  font-size: 62px;
  width: 60%;
  text-align: center;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button.cta {
  border: 2px solid black;
  font-size: 22px;
  padding: 5px 10px 5px 10px;
}

button.cta:active,
button.cta:hover {
  border-color: gray !important;
  color: gray;
}

#footer {
  display: flex;
  flex-direction: column;
  background-color: #f4f1e5;
  padding-bottom: 20px;
}

#footer-content {
  display: flex;
  flex: 1;
  justify-content: center;
}

#footer-content .col {
  width: 23%;
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  align-items: center;
  text-align: center;
}

#footer-content .col a {
  margin-top: 5px;
}

#copyright {
  margin-top: 20px;
  align-self: center;
  font-size: 14px;
}

@media (max-width: 480px) {
  img {
    width: 150px;
  }

  #header-content h1 {
    font-size: 38px;
    width: 90%;
  }

  * {
    font-size: 16px;
  }

  h3 {
    font-size: 20px;
  }

  #navbar-links a {
    font-size: 16px;
  }

  button.cta {
    font-size: 16px;
  }

  #footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #footer-content .col {
    width: 90%;
  }
}
