/* @font-face {
  font-family: 'ITC Avant Garde Gothic';
  src: local('ITC Avant Garde Gothic Bk'), local('ITC-Avant-Garde-Gothic-Bk'),
      url('fonts/ITCAvantGardeStd-Bk.woff2') format('woff2'),
      url('fonts/ITCAvantGardeStd-Bk.woff') format('woff'),
      url('fonts/ITCAvantGardeStd-Bk.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
/* @font-face {
    font-family: 'jelyttaregular';
    src: url('fonts/Jelytta.woff2') format('woff2'),
         url('fonts/Jelytta.woff') format('woff'),
         url('fonts/Jelytta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

} */

html, body {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
}

.header-video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

header {
  position: relative;
  height: 100vh;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
}

.container-logo {
  margin-top: 50px;
}
.container-logo img {
  width: 100%;
  height: 100%;
  max-width: 320px;
}

.container-content {
  display: grid;
  align-content: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 5px;
}
.container-content h1 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin: 0;
}
.container-content p {
  font-weight: 500;
  font-size: 20px;
  color: #bc874c;
  margin: 0;
}

.container-message {
  display: grid;
  align-content: center;
  font-family: 'Montserrat', sans-serif;
}
.container-message p {
  font-weight: 500;
  font-size: 20px;
  max-width: 750px;
  color: #fff;
  margin: 0 auto;
}

.container-button {
  align-content: center;
}

.container-button a,
.container-button a:active,
.container-button a:visited {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 5px 30px;
  text-decoration: none;
  letter-spacing: 3px;
  
}
.container-button a:hover {
  color: #bc874c;
  border-color: #bc874c;
}

@media (min-width: 768px) {
  .container-content {
    letter-spacing: 20px;
  }
  .container-content h1 {
    font-size: 50px;
  }
  .container-content p {
    font-size: 50px;
  }
}
