@media screen and (max-width: 1024px) {

    .navigation {
        display: none;
        width: 100%;
        z-index: 9;
    }

    .mobile-button {
        position: fixed;
        display: inline-block;
        top: 20px;
        left: 10px;
        color: #26a8da;
        z-index: 10;
        border-radius: 8px solid;
    }

    body > :not(.navigation) {
        margin: 0 0px;
    }

    section {
        margin: 30px 0 75px 0;
        width: 100%;
    }

    .main-header {
        margin: 0 20px 50px 20px;
    }

    .full-screen {
        min-height: 90vh;
    }

    .section-content {
        border-radius: 0;
    }

    .project-item {
        display: flex;
        flex-direction: column;
        background-color: #a5a5a5;
        border-radius: 15px;
        transition: 0.2s all ease;
        border: 0;
        position: relative;
        transition: 0.2s all ease-in;
        cursor: pointer;
    }

    .project-item img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        width: 100%;
    }
    
    .project-info {
        padding: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        justify-content: space-between;
        align-items: center;
    }
    
    .project-info button {
        background-color: var(--blue);
        border: 2px solid var(--blue);
        padding: 5px 10px;
        border-radius: 33px;
        cursor: pointer;
        transition: 0.2s all ease;
    }

    #project-modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        margin: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1.5px solid #a5a5a5;
        background-color: var(--black);
        border-radius: 15px;
        border-radius: 15px;
        animation-name: animatetop;
        animation-duration: 0.4s;
      }
}