@font-face {
  font-family: "BebasNeue";
  src:
    url("assets/fonts/bebas-neue-regular.woff2") format("woff2"),
    url("assets/fonts/bebas-neue-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BebasNeue";
  src:
    url("assets/fonts/bebas-neue-bold.woff2") format("woff2"),
    url("assets/fonts/bebas-neue-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BebasNeueBook";
  src:
    url("assets/fonts/book-regular.woff2") format("woff2"),
    url("assets/fonts/book-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BebasNeueBook";
  src:
    url("assets/fonts/book-italic.woff2") format("woff2"),
    url("assets/fonts/book-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

body {
  background-color: #ff6600;
  margin: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  text-align: center;
  margin: 0 40px;
}

p.frc {
  font-family: "BebasNeueBook", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

p {
  font-family: "BebasNeue", sans-serif;
  font-size: 2.75rem;
  color: #ffffff;
}

h1 {
  font-family: "BebasNeue", sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  color: #ffffff;
  margin: 0;
}

.coming-soon {
  max-width: 50vw;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  transform: translateY(-5px);
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}
