body {
    overflow: hidden;
    color: white;
    background-color: #090D0C;
    font-family: monospace;
    /* width: 100vw;
    height: 100vh; */
}
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
video {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
    height: 100%;
    width: 200.77777778vh;
    min-width: 100%;
    min-height: 56.25vw;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.container {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 0;
    left: 0;
    padding: 4%;
}

.heading {
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
    margin: 0;
}

.copy {
    font-size: 1rem;
}

.icons {
    margin-top: 50px;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: black;
    border-radius: 100%;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.5s;
    opacity: 0;
}

.icon:hover {
    cursor: pointer;
    background-color: #4d007f;
}

.icon:hover img {
    filter: invert(1);
}

.email {
    margin-top: 20px;
    opacity: 0;
}

.email a {
    color: #999;
}
.email a:hover {
    color: #fff;
}

.loading {
    background-color: #090D0C;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
  width: 100px;
  height: 100px;
  border: 4px solid #999;
  border-top-color: #d20afa;
  border-radius: 50%;
  animation: loader 1.4s infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.line {
    display: block;
    overflow: hidden;
}

.text {
    display: block;
}

@media only screen and (max-width: 600px) {
    .heading {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .copy {
        font-size: 0.9rem;
    }
}
