@font-face {
  font-family: 'HelveticaNeue'; 
  src: url("/assets/HelveticaNeue-Thin.otf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeueBold'; 
  src: url("/assets/HelveticaNeue-Roman.otf") format("opentype");
  font-style: bold;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  height: 100vh;
  background: #000 url("/assets/bg.webp") no-repeat center;
  background-attachment: fixed;
}

header {
  display: flex;
  padding: 2rem;
  width: 100%;
}


.logo {
  width: 15rem;
}

.container {
  display: flex;
  font-family: 'HelveticaNeue';
  color: #fff;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

section {
  width: 90%;
  margin-bottom: 7rem;
}

section p {
  margin-bottom: .8rem;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

section h3 {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 5rem;
}

section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 5rem;
}
@media screen and (max-width: 600px) {
  .logo {
    width: 10rem;
  }
  section p {
    margin-bottom: .8rem;
    font-size: 1rem;
    line-height: 1.4rem;
  }

  section h3 {
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 5rem;
  }

  section h2 {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 5rem;
  }
}
