@font-face {
  font-family: "Sectra-Fine";
  src: url("Sectra-Fine/GT-Sectra-Fine-Book.ttf");
}

html {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Sectra-Fine";
  background: url(background.jpg);
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-position: center;
  margin: 0;
}


.fullscreen-video-container {
  position: relative;
  height: 100vh; 
  width: 100vw;
  overflow: hidden;
}

.fullscreen-video-container video {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index : -1;
}

.fullscreen-video-container-video {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
}

.fullscreen-video-container-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 5;
}

.content-inner {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  position: absolute;
}
.inner-flex {
  max-width: 400px;
}

.inner-logo {
  margin-bottom: 90px;
}

.inner-flex img {
  width: 100%;
}

.inner-text {
  color: #fff;
  text-align: center;
  font-size: 30px;
  margin: 15px 0;
}

.inner-text a {
  color: #fff;
  text-decoration: none;
}

.social-media-container {
  display: flex;
  margin-top: 50px;
}

.social-media-container a:hover {
  opacity: 0.7;
}

.social-media-container a  {
  flex: 1 1 25%;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.social-media-container a img {
  width: 30px;
}

@media only screen and (max-width: 768px) {
  .inner-flex {
    max-width: 90%;
  }

  .inner-text {
    font-size: 20px;
  }

  .social-media-container {
    display: flex;
    margin-top: 50px;
  }

  .social-media-container a img {
    width: 25px;
  }
}