body {
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #35a6eb;
}

.container {
    display: flex;
    flex: 1 0 auto;
    justify-content: space-between;
    min-height: 100%;
    min-width: 100%;
    height: 100%;
    width: 70%;
    margin: 0 auto;
    color: #fdfdfd;
    padding-bottom: 60px;
    padding-right: 20px;
}

.left-column {
    position: fixed;
    left: 0%;
    top: 0%;
    bottom: 0%;
    width: 30%;
    height: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
}

.left-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-column {
    width: 100%;
    margin-left: 30%;
    background-color: #35a6eb;
    /* backdrop-filter: blur(5px);   */
    color: white;
    padding: 20px 30px;
}

.nav-buttons button {
    background-color: #35a6eb;
    min-width: 100px;
    color: white;
    border: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-buttons button:active {
    transform: scale(0.95);
}

.nav-buttons button:hover {
    background-color: white;
    color: #35a6eb;
}

.content {
    line-height: 1.6;
    color: #fdfdfd;
    background-color: #038aff;
}

.footer {
    position: fixed;
    /* margin-top: -40px; */
    bottom: 0;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {

    .container {
        width: 100%;
        height: 100%;
        padding: 0;
        display: block;
    }

    .left-column {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .right-column {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 2;
        overflow-y: auto;
    }

    .right-column h1 {
        color: #038aff;
        font-size: 2rem;
        text-align: center;
    }

    .right-column p {
        color: #35a6eb;
        padding: 0 10px;
    }

    .all-content {
        left: 0;
        right: 0;
        padding: 10px;
        border-radius: 15px;
        margin: 3%;
        background: rgba(255, 255, 255, 0.276);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .switch {
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.276);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .nav-buttons {
        display: flex;
        justify-content: center;
        gap: 10%;
        flex-wrap: wrap;
    }

    .nav-buttons button {
        background-color: rgba(255, 255, 255, 0.086);
        padding: 15px;
        border-radius: 10px 10px 0 0;
        font-size: large;
    }

    .content {
        background-color: rgba(3,138,255,0.5);
        padding: 20px;
        margin-top: 15px;
        border-radius: 0 0 15px 15px;
    }

    .footer {
        position: fixed;
        width: 100%;
        z-index: 3;
        color: rgb(255, 255, 255);
        text-align: center;
    }
}