html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #2E2E2E;
  font-family: 'Roboto', sans-serif;
  background-color: #F2F2F2;
  font-size: 2rem;
}

h1 {
  font-size: 8rem;
  color: #142C42;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  text-align: center;
}

h2 {
  font-size: 3.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  margin-top: 1.75rem;
}

h3 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
}

h4 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
}

p {
  font-size: 2rem;
}

.container, .footer {
  background-color: white;
  padding: 1rem;
}

.topbar-hide {
  display: none;
}

.topbar-show {
  width: 100%;
  background-color: #142C42;
  position: fixed;
  top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
  -webkit-animation: topbar-anim 0.5s ease forwards;
          animation: topbar-anim 0.5s ease forwards;
}

@-webkit-keyframes topbar-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes topbar-anim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#logo-topbar {
  display: block;
  margin: auto;
  height: 8rem;
}

.fullscreen-bg {
  width: 100%;
  height: 100vh;
  background-color: #142C42;
}

#logo-animated {
  display: block;
  margin: auto;
  max-width: 85%;
  height: auto;
  padding-top: 8rem;
  padding-bottom: 2rem;
  -webkit-animation: logo-fill 1s ease forwards 2s;
          animation: logo-fill 1s ease forwards 2s;
}

#logo-animated path:nth-child(1) {
  stroke-dasharray: 1480px;
  stroke-dashoffset: 1480px;
  -webkit-animation: logo-line-anim 2s ease forwards;
          animation: logo-line-anim 2s ease forwards;
}

#logo-animated path:nth-child(2) {
  stroke-dasharray: 1790px;
  stroke-dashoffset: 1790px;
  -webkit-animation: logo-line-anim 2s ease forwards;
          animation: logo-line-anim 2s ease forwards;
}

@-webkit-keyframes logo-line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes logo-line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes logo-fill {
  from {
    fill: transparent;
    stroke-opacity: 1;
  }
  to {
    fill: #FFB900;
    stroke-opacity: 0;
  }
}

@keyframes logo-fill {
  from {
    fill: transparent;
    stroke-opacity: 1;
  }
  to {
    fill: #FFB900;
    stroke-opacity: 0;
  }
}

#Name {
  font-size: 8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  text-align: center;
  color: transparent;
  -webkit-animation: name-fill 1s ease forwards 2s;
          animation: name-fill 1s ease forwards 2s;
}

@-webkit-keyframes name-fill {
  to {
    color: #FFB900;
  }
}

@keyframes name-fill {
  to {
    color: #FFB900;
  }
}

#ScrollContainer {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
}

#ScrollButton {
  color: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-animation: scrollbutton-fill 1s ease forwards;
          animation: scrollbutton-fill 1s ease forwards;
}

#chevron-down {
  font-size: 4rem;
}

@-webkit-keyframes scrollbutton-fill {
  to {
    color: white;
  }
}

@keyframes scrollbutton-fill {
  to {
    color: white;
  }
}

#Page2 {
  min-height: 80vh;
}

.button-contact {
  display: block;
  background-color: white;
  color: #2E2E2E;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 2rem;
  margin: 0px auto 8px auto;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  cursor: pointer;
  border: 2px solid #142C42;
  border-radius: 8px;
  min-width: 220px;
}

.button-contact:hover {
  background-color: #142C42;
  color: white;
}

.button-contact:active {
  background-color: #142C42;
  color: white;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

#byemail {
  display: block;
  background-color: white;
  color: #2E2E2E;
  padding: 16px 32px;
  text-align: center;
}

.modal {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
}

.modal-content {
  background-color: white;
  border: 1px solid #888;
  width: 100%;
  max-width: 660px;
  -webkit-animation: modalanim;
          animation: modalanim;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 10px;
}

.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@-webkit-keyframes modalanim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalanim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media all and (min-width: 700px) {
  .container, .footer {
    width: 70%;
    max-width: 150rem;
    margin: auto;
  }
  .modal-content {
    margin: 15% auto;
    padding: 20px;
  }
}

@media all and (min-width: 960px) {
  h1 {
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */