@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@font-face {
    font-family: Nightcore;
    src: local('Nightcore'), url(/img/Nightcore.ttf) format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Add box-sizing for consistent sizing */
}

body, html {
    background-color: black;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

#video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    position: fixed;
    z-index: 1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.content-title {
    font-size: 5rem;
    color: #fff;
    margin: 0;
    padding: 0;
}

.content-title h1::before {
    content: "[ ";
}

.content-title h1::after {
    content: " ]";
}

.content-title h1 {
    font-weight: 500 !important;
    font-family: Nightcore;
    text-shadow: 0px 0px 150px white;
}

.other-content {
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    gap: 1rem;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.other-content p, a {
    text-decoration: underline;
    color: #fff;
}

footer {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    position: fixed;
    bottom: 0;
    margin-bottom: 10px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    z-index: 3;
    text-shadow: 0px 0px 25px white;
}

@media screen and (max-width: 1557px) {
    .content-title {
        font-size: 5rem;
    }

    .content-title h1::before {
        content: "";
    }

    .content-title h1::after {
        content: "";
    }
}

@media screen and (max-width: 768px) {
    .content-title {
        font-size: 3rem;
    }

    .content-title h1::before {
        content: "";
    }

    .content-title h1::after {
        content: "";
    }
}