@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: Hacked;
    src: url('/static/Hacked-KerX.ttf');
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'Hacked';
    font-style: normal;
}

.container {
    display: flex;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    position: relative
}

.content {
    display: flex;
    flex-direction: column;
    width: 60rem;
}

.title {
    color: #E71224;
    font-family: 'Hacked';
    font-size: 10rem;
    height: 10rem;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-around;
}

li {
    font-size: 5rem;
}

a {
    color: #E71224;
}

.overlay {
    position: absolute;
    z-index: -1;
    color: #e71224ae;
    top: 20%;
    min-height: 100vh;
}


.overlay>p {
    width: 15rem;
    font-family: 'Hacked';
}

.overlay-right {

    right: 0;
}
.scroll-container {
    position: absolute;
    bottom: 0
}

.scroll-indicator span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2rem;
    height: 2rem;
    margin-left: -12px;
    border-left: 0.2rem solid #E71224;
    border-bottom: 0.2rem solid #E71224;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb04 2s infinite;
    animation: sdb04 2s infinite;
    box-sizing: border-box;
}
.scroll-container a{
    width: 5rem;
    height: 5rem;
    color: transparent;
}
@-webkit-keyframes sdb04 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}

@keyframes sdb04 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        transform: rotate(-45deg) translate(0, 0);
    }
}

.ytembed {
    z-index: 30;
    position: absolute;
    width: 0.4px;
    height: 0.4px;
}
.description {
    color:#E71224;
    display: flex;
    flex-direction: row;
    gap: 20rem;
}

.description div {
    width: 20rem;
}


.footer {
    color:#E71224;
    text-align: center;
    font-family: 'Hacked';

}

@media screen and (max-width: 80rem) {

    .title {
        color: #E71224;
        font-family: 'Hacked';
        font-size: 3rem;
        text-align: center;
    }

    ul {
        gap: 1rem;
    }

    li {
        font-size: 2rem;
    }

    .overlay>p {
        width: 10rem;
        font-family: 'Hacked';
        margin-left: 1em;
        margin-right: 1em;
    }

    .overlay {
        top: 0%;
    }

    .overlay2 {
        bottom: 0;
    }

    video {
        width: 100vw;
        min-height: 100vh;
    }
    .description {
        color:#E71224;
        display: flex;
        flex-direction: row;
        gap: 4rem;
    }
    
    .description div {
        width: 10rem;
    }
}