*{
    box-sizing: border-box;
}

/* Font Styling */

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 1.1em; 
    font-family: "Be Vietnam Pro", "Arial", sans-serif;
        font-weight: 400;
        font-style: normal;
    background-color: aliceblue;
}

h1 {
    font-size: 7em;
    font-family: "Passion One", "Impact", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: aliceblue;
}

h2 {
    font-size: 3em;
    font-family: "Passion One", "Impact", sans-serif;
    font-kerning: 1em;
}

h3 {
    font-size: 2em;
    font-family: "passion One", "Impact", sans-serif;
}

.calhead {
    font-style: italic;
    color: #777272;
    justify-content: center;
    text-align: center;
    padding-top: 40px;
}
  
/* Navigation Style */

nav {
    background: #378A82;
    padding: 5px;
    text-align: center;
    width: 1vw;
    height: 1vh
    
}
.navigation {
    display: inline-block;
    margin: 0;
    height: 100%;
    width: 200%;
    z-index: 200;

}
nav li {
    list-style-type: none;
    text-align: center;
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2em;
    
}

.logoplace {
    height: 100px;
}

a {
    text-decoration: none;
    justify-content: center;
    color: #fff;
    display: inline;
    transition: all 0.5s linear;
    width: 100%;
    height: 100%;
}
a:hover {
    color: #fff;
    background: #333;
}

/* Grid Styling and Media Queries*/

.grid{
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    
}

.cell{
    width: 100%;
}

[class*="col"] {
    grid-column-end: span 12;
}

/* Typically desktop */
@media only screen and (min-width: 1000px) {
    .col1 {
        grid-column-end: span 12;
    }
    .col2 {
        grid-column-end: span 6;
    }
    .col3 {
        grid-column-end: span 4;
    }
    .col4 {
        grid-column-end: span 3;
    }
    .col6 {
        grid-column-end: span 2;
    }
    .col12 {
        grid-column-end: span 1;
    }

    .navigation {
        grid-template-columns: repeat(2, 1fr 2fr);
    }

    nav a {
        display: inline-block;
    }

    .galhero {
        grid-column-end: span 8;
    }

    .topgal {
        grid-template-columns: repeat(12, 4fr);
    }

    .start5 {
        grid-column-start: 5;
    }
    
    
    

}
/* Typically tablet or intermedium */
@media only screen and (max-width: 999px) {
    .md1 {
        grid-column-end: span 12;
    }
    .md2 {
        grid-column-end: span 6;
    }
    .md3 {
        grid-column-end: span 4;
    }
    .md4 {
        grid-column-end: span 3;
    }
    .md6 {
        grid-column-end: span 2;
    }
    .md12 {
        grid-column-end: span 1;
    }

    .navigation {
        grid-template-columns: repeat(2, 1fr 2fr);
    }
    nav a {
        display: inline-block;
        
    }
}

/* For MOBILE ONLY */
@media only screen and (max-width: 600px) {
    .mob1 {
        grid-column-end: span 12;
    }
    .mob2 {
        grid-column-end: span 6;
    }
    .mob3 {
        grid-column-end: span 4;
    }
    .mob4 {
        grid-column-end: span 3;
    }
    .mob6 {
        grid-column-end: span 2;
    }
    .mob12 {
        grid-column-end: span 1;
    }

    .navigation {
        width: 100%;
    }


    }    


/* title Styling */

.titlebox {
    width: 100vw;
    height: 10vh;
    display: grid;
}

.subheader {
    height: 100vw;
    height: 15vh;
    display: grid;
}

.pagetitle{
    justify-self: center;
}

/* homepage Style */

.hp-heroimg{
    padding-top: 30px;
    padding-left: 50px;
    height: 70vh;
    background: url(images/homepagehero.jpeg) center center;
    background-size: cover;
    display: grid;
}

.featuredText{
    width: 40%;
    padding: 10px;
    justify-self: center;
    display: grid;
    
}


.hpi {
    max-width: 100%;
    min-width: 100%;
    height: fit-content;
}
/*About Us Style*/

.matlist {
    justify-content: center;
    text-align: center;
}

.padlist {
    padding-left: 20px;
}

.cast {
    max-height: 100%;
    width: 100%;
}


/* Resources Style */

.quote {
    font-style: italic;
    color: #777272;
    padding-top: 40px;
}
/* Gallery Style */

.galdesc {
    font-style: italic;
    color: #777272;
    font-size: 0.9em;
    padding-top: -40px;
}

.galhimg {
    max-width: 100%;
    max-height: 90%;
}

.nopad {
    padding-top: 0px;
}

