@font-face {
  font-family: headerFont;
  src: url(../assets/fonts/Canela-Regular.woff);
}

h1 {
  max-width: 70%;
  font-family: headerFont;
  font-size: 6rem;
  word-wrap: break-word;
}

p {
  font-family: headerFont;
  font-size: 1.2rem;
  word-wrap: break-word;
  text-align: center;
}

body {
  background-color: rgb(227, 224, 209);
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.first-page {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background-image: url(../assets/colleagues-2.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-page .header {
  word-wrap: unset;
  background-color: white;
  padding: 30px 25px 10px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: headerFont;
  font-size: 6rem;
}

.first-page a {
  text-decoration: none;
  color: #000;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 70%;
}

.content {
  padding-bottom: 40px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 5rem;
  }
  .content-wrapper {
    min-width: 100%;
  }
}
