html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@media screen and (min-width: 1024px) {

    body {
        background-color: black;
        display: grid;
        z-index: 1;
        overflow-x: hidden;
    }

    #MH {
        display: none;
    }

    main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto minmax(0, 1fr) 80px;
        background-color: whitesmoke;
        z-index: 2;
        padding: 50px 20px;
        width: calc(100vw - 40px);
        justify-self: center;
        margin: auto;
    }

    #headlineM {
        display: none;
    }

    header {
        padding-left: 0px;
        display: grid;
        grid-template-columns: 450px 1fr 400px 10px;
        background-color: black;
        width: 100%;
        border: 3px rgb(166, 166, 166) solid;
        z-index: 4;
        position: fixed;
        height: 85px;
    }

    h1 {
        display: flex;
        grid-column: 1/2;
        height: 85px;
        color: aliceblue;
        font-family: 'Dancing Script', cursive;
        justify-content: center;
        align-items: center;
        font-size: 50px;
        padding-left: 20px;
        margin: 0;
        vertical-align: middle;
        line-height: 75px;
        z-index: 3;
        text-align: center;
        cursor: default;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    h2 {
        font-family: 'Dancing Script', cursive;
        font-size: 70px;
        padding: 10px;
        z-index: 3;
        text-align: center;
        cursor: default;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    h3 {
        font-family: 'Dancing Script', cursive;
        font-size: 45px;
        z-index: 3;
        text-align: center;
        cursor: default;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #sidetext {
        margin-right: 10px;
        grid-column: 2/3;
        grid-row: 1/2;
        z-index: 3;
    }

    h4 {
        padding: 10px 50px;
        padding-left: 10px;
        font-family: nunito;
        font-size: 30px;
        text-align: center;
        cursor: default;
    }

    #headline {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.6);
        padding: 20px;
        width: auto;
    }

    .title {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding-left: 0px;
        margin: auto;
        margin-left: 0;
        grid-column: 1/2;
    }

    .Logo {
        display: flex;
        width: auto;
        height: 85px;
        border-right: 3px rgb(166, 166, 166) solid;
        justify-content: start;
    }

    .text {
        grid-column: 2/3;
        font-size: 22px;
        padding: 10px 0;
        width: 100%;
        height: 65px;
        margin: auto;
        align-items: center;
    }

    .icons {
        grid-column: 3/4;
        font-size: 20px;
        padding: 10px;
        padding-left: 0px;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        text-align: center;
    }
      
    ul {
        display: flex;
        justify-content: space-around;
        text-align: center;
        margin: auto;
        vertical-align: middle;
    }

    .headtext {
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: rgb(199, 199, 199);
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: 'Pacifico', cursive;
        vertical-align: middle;
    }
      
    .headtext::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white; /* Change this to your desired underline color */
        height: 2px; /* Adjust the underline height as needed */
        transform: scaleX(0); /* Initially, set the scale to zero to hide the underline */
        transform-origin: bottom center;
        transition: transform 0.3s ease; /* Add a transition for smooth animation */
    }
      
    .headtext:hover {
        -webkit-text-fill-color: white;
        cursor: pointer;
    }
      
    .headtext:hover::before {
        transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }

    .headicon {
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: white;
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: 'Pacifico', cursive;
        padding: 20px;
        font-size: 30px;
        vertical-align: middle;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
      
    .headicon::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: whitesmoke; /* Change this to your desired underline color */
    }
      
    .headicon:hover {
        color: rgba(245, 245, 245, 0.8); /* Change the text color on hover if needed */
        cursor: pointer;
        -webkit-text-fill-color: white;
    }
      
    .headicon:hover::before {
        transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }

    #HeroImage {
        background-image: url("Images/Hero.jpg");
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        text-align: center;
        overflow-anchor: none;
        background-attachment: fixed;
        border-bottom: 3px white solid;
    }
    
    #ContactURL {
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: rgb(199, 199, 199);
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: 'Pacifico', cursive;
        vertical-align: middle;
        border: 2px solid rgb(199, 199, 199);
        text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;  
        border-radius: 50px;
        padding: 0px 10px;
    }

    #ContactURL:hover::before {
        transform: scaleX(0); /* When hovering, scale the underline to 100% width */
    }

    #ContactURL:hover {
        color: white; /* Change the text color on hover if needed */
        cursor: pointer;
        border: 2px solid white;
    }

    #map {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30vw;
        aspect-ratio: 1 / 1;
        margin: 20px auto;
    }

    /* Slideshow container */
    .gallery {
        grid-column: 1/2;
        grid-row: 1/2;
        width: 40vw;
        aspect-ratio: 1 / 1;
        position: relative;
        margin: auto;
    }

    /* Hide the images by default */
    .gallery2 {
        display: none;
    }

    /* Next & previous buttons */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: aliceblue;
        text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
        font-weight: bold;
        font-size: 30px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
        color: white;
    }

    /* Caption text */
    .gtext {
        color: white;
        font-size: 15px;
        bottom: 58px;
        padding: 8px 12px;
        position: absolute;
        width: calc(40vw - 24px);
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
    }

    /* Number text (1/3 etc) */
    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2;
        top: 0;
    }

    /* The dots/bullets/indicators */
    .dot {
        cursor: pointer;
        height: 20px;
        width: 20px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    /* Fading animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

    .sizing {
        width: 40vw;
        aspect-ratio: 1 / 1;
        position: relative;
    }

    #crewlist {
        grid-column: 1/3;
        grid-row: 2/4;
        margin: 20px auto;
        padding: 80px 40px;
        padding-bottom: 0;
    }

    #crewlist hr {
        border: 1px solid rgb(0, 0, 0); /* Set the border style for the horizontal line */
        margin: 20px 0; /* Adjust the margin as needed */
    }

    .crewem {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Adjust the column widths as needed */
        gap: 0px; /* Add some spacing between columns */
    }
    

    h5 {
        font-size: 40px;
        font-family: 'Dancing Script', cursive;
        grid-column: 1/2;
    }

    h6 {
        font-size: 20px;
        font-family: nunito;
        padding-bottom: 10px;
        grid-column: 1/2;
    }

    .biography {
        grid-column: 1/2;
        font-size: 20px;
        text-indent: 15px;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

    .crewpic {
        grid-column: 2/3;
        aspect-ratio: 1 / 1;
        width: 25vw;
        object-fit: cover;
        margin-left: 5vw;
        margin-bottom: 5vh;
    }

    footer {
        grid-column: 1/3;
        grid-row: 4/5;
        z-index: 3;
    }

    footer p{
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        font-style: italic;
        margin-left: 5vw;
        font-size: 20px;
        padding: 0 100px;
    }

    footer hr {
        margin: 0;
        border: 1px solid black;
        width: 90vw;
        margin: auto;
        margin-bottom: 20px;
    }

    .pertext {
        text-align: center;
        line-height: 40px;
    }

    .ptext {
        font-size: 20px;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        text-indent: 10px;
        margin: auto;
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .permap {
        margin-left: 5vw;
        margin-top: 5vh;
        width: 25vw;
        height: 40vh;
    }

    .collage {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin: 10px 12.5vw;
    }

    .collage img {
        aspect-ratio: 1 / 1;
        width: 25vw;
        padding: 10px;
    }

    .collage .i1 img{
        grid-column: 1/2;
    }

    .collage .i2 img{
        grid-column: 2/3;
    }

    .collage .i3 img{
        grid-column: 3/4;
    }

    #contac {
        grid-column: 1/3;
    }

    input {
        width: 20vw;
        font-size: 20px;
        padding: 10px;
        border-radius: 60px;
        margin: 15px auto;
        border: 2px solid black;
    }
      
    textarea {
        width: 20vw;
        font-size: 20px;
        margin: 15px auto;
        border-radius: 25px;
        border: 2px solid black;
        padding: 15px 10px 10px 10px;
    }
    
    textarea, text {
        text-indent: 15px;
    }
    
    .input, text {
        text-indent: 7px;
    }
    
    label {
        font-family: Arial, Helvetica, sans-serif;
    }
    
    form {
        text-align: center;
    }
    
    #button {
        background-color: rgb(64, 226, 255);
        color: white;
        text-shadow:
        -2px -1px 0 #000,
        2px -1px 0 #000,
        -2px 1px 0 #000,
        2px 1px 0 #000;  
        border-radius: 50px;
        width: 20vw;
    }
    
    span {
        color: rgb(255, 0, 0);
        font-weight: bold;
    }
    
    #address {
        display: none;
    }

}



/* THIS IS THE PHONE SPOT ADAM */



@media screen and (max-width: 410px) {
    body {
        background-color: whitesmoke;
        overflow-y: auto;
        overflow-x: hidden;
    }

    main {
        display: grid;
        overflow-x: hidden;
        min-height: 100vh;
        grid-template-rows: 60px 250px 1fr 1fr auto 80px;
    }

    #DH {
        display: none;
    }

    #MH {
        padding-left: 0px;
        display: grid;
        grid-template-columns: 250px 1fr 50px;
        width: calc(100vw - 5px);
        background-color: black;
        position: fixed;
        height: 50px;
        z-index: 4;
        border: 3px rgb(166, 166, 166) solid;
    }

    .title {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding-left: 0px;
        margin: auto;
        margin-left: 0;
        grid-column: 1/2;
    }

    .Logo {
        width: 50px;
        height: 50px;
        border-right: 3px rgb(166, 166, 166) solid;
    }

    h1 {
        display: flex;
        height: 50px;
        color: aliceblue;
        font-family: 'Dancing Script', cursive;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        padding-left: 10px;
        margin: 0;
        vertical-align: middle;
        line-height: 50px;
        z-index: 3;
        text-align: center;
        cursor: default;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #hamburgerIcon {
        grid-column: 3/4;
    }

    #closebtn {
        margin: 0px;
        width: 30px;
        text-decoration: none;
        color: white;
        font-size: 40px;
        line-height: 1;
        position: fixed;
        display: flex;
        margin-left: 0px;
        transition: all 0.3s ease;
        display: none;
    }

    #openbtn {
        margin: auto;
        width: 30px;
        text-decoration: none;
        color: white;
        font-size: 40px;
        margin-left: 0px;
        transition: all 0.3s ease;
        
    }

    #HeroImage {
        display: none;
    }

    #headlineM {
        background-color: rgba(0, 0, 0, 0.6);
        padding: 20px;
        width: 80vw;
        height: 100px;
        grid-row: 2/3;
        margin: auto 5vw;
    }

    h2 {
        font-family: 'Dancing Script', cursive;
        font-size: 35px;
        padding: 10px;
        z-index: 3;
        text-align: center;
        cursor: default;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    h3 {
        font-family: 'Dancing Script', cursive;
        font-size: 25px;
        z-index: 3;
        text-align: center;
        cursor: default;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .topnav {
        height: 0;
        width: 100vw;
        z-index: 1; /* Stay on top */
        position: fixed; top:55px;
        left: 0;
        background-color: rgb(0, 0, 0); /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        overflow-y: hidden;
        padding-top: 0px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the topnav */
        display: flex;
        flex-direction: column; /* Make the container a column */
        align-items: center; /* Center the links horizontally */
        justify-content: space-around; /* Center the links vertically */
    }
    
    .topnav p a {
        padding: 4vh 8px;
        text-decoration: none;
        z-index: 2;
        color: white;
        display: block;
        font-size: 250%;
        transition-duration: 0.5s;
        line-height: 2;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        line-height: 100%;
    }

    .icons {
        grid-column: 3/4;
        font-size: 20px;
        padding: 10px;
        padding-left: 0px;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .headicon {
        display: inline-block;
        text-decoration: none; /* Remove the default underline */
        position: relative;
        color: white;
        transition: color 0.3s; /* Add a transition for smooth color change */
        font-family: 'Pacifico', cursive;
        padding: 20px;
        font-size: 40px;
        vertical-align: middle;
        background-image: url(Images/Gradient.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
      
    .headicon::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: whitesmoke; /* Change this to your desired underline color */
    }
      
    .headicon:hover {
        color: rgba(245, 245, 245, 0.8); /* Change the text color on hover if needed */
        cursor: pointer;
        -webkit-text-fill-color: white;
    }
      
    .headicon:hover::before {
        transform: scaleX(1); /* When hovering, scale the underline to 100% width */
    }

    #map {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        aspect-ratio: 1 / 1;
        margin: 20px auto;
    }

    /* Slideshow container */
    .gallery {
        grid-row: 4/5;
        width: 100vw;
        aspect-ratio: 1 / 1;
        position: relative;
        margin-top: 5vh;
    }

    /* Hide the images by default */
    .gallery2 {
        display: none;
    }

    /* Next & previous buttons */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: aliceblue;
        text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
        font-weight: bold;
        font-size: 30px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
        color: white;
    }

    /* Caption text */
    .gtext {
        color: white;
        font-size: 15px;
        bottom: 58px;
        padding: 8px 12px;
        position: absolute;
        width: calc(40vw - 24px);
        background-color: rgba(0, 0, 0, 0.5);
        text-align: center;
    }

    /* Number text (1/3 etc) */
    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2;
        top: 0;
    }

    /* The dots/bullets/indicators */
    .dot {
        cursor: pointer;
        height: 20px;
        width: 20px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    /* Fading animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

    .sizing {
        width: 100vw;
        aspect-ratio: 1 / 1;
        position: relative;
    }

    #crewlist {
        grid-row: 5/6;
        margin: 20px 0;
        width: calc(100vw - 20px);
        padding: 80px 0;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 0;
    }

    #crewlist hr {
        border: 1px solid rgb(0, 0, 0); /* Set the border style for the horizontal line */
        margin: 20px 0; /* Adjust the margin as needed */
    }

    .crewem {
        gap: 0px; /* Add some spacing between columns */
        text-align: center;
    }

    h4 {
        padding: 10px 10px;
        padding-left: 10px;
        font-family: nunito;
        font-size: 17px;
        text-align: center;
        cursor: default;
    }
    

    h5 {
        font-size: 20px;
        font-family: 'Dancing Script', cursive;
        grid-column: 1/2;
    }

    h6 {
        font-size: 20px;
        font-family: nunito;
        padding-bottom: 10px;
        grid-column: 1/2;
    }

    #sidetext {
        margin-right: 10px;
        margin-top: 10vh;
        grid-row: 3/4;
        z-index: 3;
        width: 100vw;
        height: auto;
        text-align: center;
    }

    .biography {
        font-size: 17px;
        text-indent: 15px;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

    .crewpic {
        grid-column: 2/3;
        aspect-ratio: 1 / 1;
        width: 90vw;
        object-fit: cover;
        margin-top: 2vh;
        margin-bottom: 1vh;
    }

    footer {
        grid-row: 6/7;
        z-index: 3;
        margin-top: auto;
    }

    footer p{
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        font-style: italic;
        margin-left: 5vw;
        font-size: 16px;
        padding: 0 50px;
        margin-bottom: 10px;
    }

    footer hr {
        margin: 0;
        border: 1px solid black;
        width: 90vw;
        margin: auto;
        margin-bottom: 20px;
    }

    section {
        grid-row: 3/4;
    }

    input {
        width: 70vw;
        font-size: 20px;
        padding: 10px;
        border-radius: 60px;
        margin: 15px auto;
        border: 2px solid black;
    }
      
    textarea {
        width: 70vw;
        font-size: 20px;
        margin: 15px auto;
        border-radius: 25px;
        border: 2px solid black;
        padding: 15px 10px 10px 10px;
    }
    
    textarea, text {
        text-indent: 15px;
    }
    
    .input, text {
        text-indent: 7px;
    }
    
    label {
        font-family: Arial, Helvetica, sans-serif;
    }
    
    form {
        text-align: center;
        height: 504px;
    }
    
    #button {
        background-color: rgb(64, 226, 255);
        color: white;
        text-shadow:
        -2px -1px 0 #000,
        2px -1px 0 #000,
        -2px 1px 0 #000,
        2px 1px 0 #000;  
        border-radius: 50px;
        width: 50vw;
        padding: 10px;
        margin: auto;
        text-align: center;
    }
    
    span {
        color: rgb(255, 0, 0);
        font-weight: bold;
    }
    
    #address {
        display: none;
    }

    .pertext {
        text-align: center;
        line-height: 40px;
    }

    .ptext {
        font-size: 20px;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        text-indent: 10px;
        margin: auto;
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .permap {
        margin-top: 5vh;
        width: 100vw - auto;
        aspect-ratio: 1 / 1;
    }

    #Mobilechange {
        grid-row: 3/4;
        justify-content: center;
        margin: auto;
    }

    .collage {
        grid-row: 4/5;
        display: flex;
        flex-direction: column;
    }

    .collage img {
        width: 100vw;
        aspect-ratio: 1 / 1;
        padding-bottom: 5px;
        padding-top: 10px;
    }

    #mainM1 {
        grid-template-rows: 60px 250px 1fr 80px;;
    }

    #footM1 {
        grid-row: 4/5;
    }

    #mainM2 {
        grid-template-rows: 60px 250px 200px 1fr 80px;
    }

    #footM2 {
        grid-row: 5/6;
    }

    #mainM3 {
        grid-template-rows: 60px 200px 1fr 80px;
    }

    #footM3 {
        grid-row: 4/5;
    }
}