/* mobile */
@media (max-width: 1000px) {
    .container {
        width: 90%; /* Use percentages instead of pixels */
        margin: 0 auto;
    }

    .button-container {
        display: flex;
        gap: 20px;
    }

    .button-container a {
        padding: 10px 20px;
        background-color: var(--background-color);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 5px;
        text-align: center;
    }

    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 85vh;
        flex-direction: column;
        margin: 0;
    }
}

/* big screens */
@media (min-width: 1001px)
{
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        flex-direction: column;
        margin: 0;
    }

    .button-container {
        display: flex; /* Flexbox for side-by-side layout */
        gap: 10px; /* Optional spacing between buttons */
    }
    
    .button-container a {
        padding: 10px 20px;
        background-color: var(--background-color);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 5px;
        text-align: center;
    }
}

:root {
    
    --background-color: #254148 /* dark blue-green background */
}

.logo {
    max-width: 65%;
    height: auto;
}

.contact-popup {
    font-size: 2em;
    color: #333;
    margin-top: 20px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.popup:target {
    display: flex;
}

body.light-mode {
    --text-color: #afd2d9; /* light blue text */
    background-color: #eaeaea;
    color: #ffffff;
}

body.dark-mode {
    --text-color: #000000; /* light blue text */
    background-color: #1c1c1c;
    color: #ffffff;
}

body {
    font-family: 'Fira Code', monospace;
}
