@font-face {
    font-family: Display;
    src: url(assets/Fonts/maginors-cufonfonts/maginors-maginors-400.otf);
}

@font-face {
    font-family: Main;
    src: url(assets/Fonts/cocon/CoconRegularFont.otf);
}

html {
    background: url("assets/Images/bg-main.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Main;
    color: white;
}

* {
    box-sizing: border-box;
}

#header1 {
    font-family: Display;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    border-radius: 0.5rem;
    border: white groove 0.25rem;
}

    #header1 img {
        width: 100%;
        height: auto;
        display: block;
    }

#header2 {
    font-family: Display;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #0c0d11;
    border: white groove;
    border-radius: 0.2rem;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1920px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.sidebar {
    width: 20%;
    min-width: 12.5rem;
    color: white;
    padding: 1rem;
    text-align: center;
    background-color: #0c0d11;
    transition: all 0.3s ease;
}

.left-sidebar {
    font-family: Display;
    border: white groove;
    border-right: none;
}

.right-sidebar {
    border: white groove;
    border-left: none;
}

.content {
    flex: 1;
    line-height: 200%;
    padding: 0.5rem;
    border-left: white groove;
    border-right: white groove;
    border-bottom: white groove;
    background-color: #0c0d11;
    position: relative;
    z-index: 0;
    transition: all 0.3s ease;
}

    .content a {
        color: white;
    }

        .content a:hover {
            color: cyan;
        }

    .content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .content h1,
    .content h2,
    .content h3,
    .content h4 {
        text-align: center;
    }

    .content p {
        padding: 0.5rem;
    }

.crt-frame {
    display: flex;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.699));
    overflow: hidden;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.crt-screen {
    width: 75%;
    height: auto;
    position: absolute;
    top: 13%;
    left: 15%;
    z-index: -1;
    transition: all 0.3s ease;
}

.links-container {
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .links-container a {
        width: auto;
        text-align: center;
    }

@keyframes gooeyDrip {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px #81c8be;
    }

    50% {
        transform: scale(1.2, 0.8);
        text-shadow: 0 0 15px #81c8be;
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 5px #81c8be;
    }
}

/* ---------------------
   Responsive: Mobile
--------------------- */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 1rem;
        border: white groove;
        border-radius: 0.25rem;
    }

    .left-sidebar,
    .right-sidebar {
        border: white groove;
        border-radius: 0.25rem;
    }

    .content {
        width: 100%;
        border: white groove;
        border-radius: 0.25rem;
    }

    .crt-frame {
        width: 100%;
    }

    .crt-screen {
        width: 90%;
        left: 5%;
    }

    .links-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .links-container a {
        width: 80%;
    }
}
