main {
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1fr  2fr;
    gap: 20px;
}

iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
}

.span {
    grid-column: span 2;
}

.roadcut {
    padding-top: 80px;
}

/* GALLERY */
    .gallery {
        
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        margin-right: 0px;
        margin-left: 0px;
        align-items: center;
        margin-bottom: 20px;
    }
    .gallery img {
        height: 300px;
        object-fit: cover; 
        object-position: center;
        width: 480px;
    }


    .imgViewer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        display: grid;
        place-content: center;
        background-color: rgba(0, 0, 0, 0.8);
        transition: opacity 0.5s ease-in-out;
    }
    
    .imgViewer img {
        max-width: 80vw;
        max-height: 80vh;
    }

    .hidden {
        opacity: 0;
        pointer-events: none;
    }


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

    /* Hide desktop nav, show mobile menu toggle
    .desktop-nav {
        display: none;

    }
    
    .menu-toggle {
        display: flex;
    } */

    main {
        grid-template-columns: 1fr;
    }

    .content {
        width: 80vw;
    }

    .span {
        grid-column: span 1;
    }


}

@media screen and (max-width: 900px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .gallery img {
        height: auto;
        width: 500px;
        justify-self: center;
    }
}


@media screen and (max-width: 600px) {
    main {
        max-width: 600px;
    }

    .content {
        width: auto;
        padding-top: 80px;
    }
}
