@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
html {
    overscroll-behavior: none;
}

body {
    background-image: url(media/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    backdrop-filter: blur(5px);
    font-family: "Fira Code SemiBold", monospace;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    margin: 0;
}

.main {
    padding: 10px;
    border: white 3px solid;
    border-radius: 4px;
    box-shadow: 0 0 20px 5px rgba(109, 109, 109, 0.5);
}

.bttnLinks {
    color: white;
    text-decoration: none;
    font-size: large;
    text-decoration: wavy underline;
}

.bttnLinks:hover {

    text-decoration: underline;
    color: pink;
}


.logos {
    margin-top: 10px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    cursor: pointer;
}

.disclaimer {
    font-size: small;
    margin-top: 10px;
    border: 2px solid white;
    border-radius: 4px;
    padding: 5px;
    margin-top: 10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    box-shadow: 0 0 10px 3px rgba(109, 109, 109, 0.5);
}

@media screen and (max-width: 768px) {
    .main {
        padding: 50px;
        text-align: center;
    }
    .disclaimer {
        display: none;
    }
}

.tab-bar {
    width: 50%;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    border: white 3px solid;
    border-radius: 4px;
    box-shadow: 0 0 20px 5px rgba(109, 109, 109, 0.5);
}

a.active {
    font-weight: bold;
    color: pink;
}

a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* mobile view, attempt 3. 
fuck it, i know this code is borked but who cares. nobody visits this shitty site anyways.*/
.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        position: fixed;
        cursor: pointer;
        font-size: 30px;
        color: white;
        text-align: right;
        padding: 10px;
        z-index: 1200;
        top: 5px;
        left: 5px;
    }

    .tab-bar {
        display: none;
        position: fixed;
        /* Fix it to the screen */
        top: 0;
        left: 0%;
        /* chatgpt said 0% would work, it did not, jank fix: 50% left */
        width: 100vw;
        /* Fullscreen width */
        height: 100vh;
        /* Fullscreen height */
        background-color: rgba(255, 255, 255, 0.2);
        /* Dark background with transparency */
        z-index: 1000;
        /* Make sure it appears on top */
        flex-direction: column;
        /* Stack the tabs vertically */
        justify-content: center;
        /* Center the tabs vertically */
        align-items: center;
        /* Center the tabs horizontally */
        margin: 0;
        padding: 0;
        font-size: x-large;
    }

    .tab-bar.active {
        display: flex;
    }

    .tab-bar a {
        margin-top: 10px;
    }

    .main {
        margin-top: 10px;
        flex-direction: column;
        padding: 10px;
        height: auto;
    }
}