@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
}

:focus {
  outline: none;
}

body {
  padding: 0;
  margin: 0;
  color: white;
  font-family: "Catamaran", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-weight: 600;
  font-size: 7rem;
  margin: 0.1em auto;
  line-height: 1;
  letter-spacing: 5px;
  margin: 0.1em 0;
  width: 100%;
}

h2 {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 0.2em;
  letter-spacing: 1px;
}

h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin: 0;
}
.main {
  height: 100vh;
}

.main section {
  height: 100vh;
}

.main_wrapper {
  height: 100vh;
  display: flex;
}

.fullscreen_video {
  position: absolute;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.fullscreen_video::after {
  content: "";
  position: absolute;
  background-color: rgba(10, 10, 10, 0.75);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fullscreen_video video {
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100%;
  object-fit: cover;
}

.content {
  position: absolute;
  width: 80%;
  max-width: 800px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}

#message {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  background: rgb(197, 39, 211);
  color: white;
  border: 3px solid rgb(197, 39, 211);
  border-radius: 30px;
  padding: 1.15em 4.3em;
  margin: 5em 0 2.5em 0;
  transition: all 0.4s;
  cursor: pointer;
}

#message:hover {
  background: transparent;
  border: 3px solid white;
}

.social ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.social ul li {
  display: inline-block;
  line-height: 1;
}

#facebook-icon,
#instagram-icon {
  fill: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.4s;
}
#facebook-icon:hover,
#instagram-icon:hover {
  fill: #48d4ae;
}

.social-element + .social-element {
  margin-left: 1em;
}

.loader-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1d1d1d;
  z-index: 3;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid;
  color: rgb(67, 97, 228);
  border-radius: 50%;
  border-top-color: transparent;
  animation: loader 2s linear infinite;
}

@keyframes loader {
  25% {
    color: #ad6db6;
  }
  50% {
    color: #9c748c;
  }
  75% {
    color: #3f2892;
  }
  to {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 900px) {
  :root {
    font-size: 80%;
  }
}

@media only screen and (max-width: 745px) {
  h1 {
    font-size: 5rem;
  }
}

@media only screen and (max-width: 550px) {
  h1 {
    font-size: 4rem;
  }

  .content {
    width: 90%;
  }
  #message {
    margin: 4em 0 2.5em 0;
  }
}
