@import url(reset.css);

@media only screen and (min-width: 1200px) {
    h1 {
        font-size: 7.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
    }
    h3 {
        font-size: 4.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
    }
    p {
        font-size: 2.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: left;
    }
    #MainContent {
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 5%;
        margin-top: 5%;
    }
    img {
        width: 40%;
    }
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1199px) {
    h1 {
        font-size: 7.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
    }
    h3 {
        font-size: 4.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
    }
    p {
        font-size: 3vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: left;
    }
    #MainContent {
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 5%;
        margin-top: 5%;
    }
    img {
        width: 40%;
    }
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

@media only screen and (max-width: 599px) {
    h1 {
        font-size: 4.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
    }
    h3 {
        font-size: 2.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
    }
    h2 {
        padding-left: 2%;
    }
    p {
        font-size: 3.5vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: left;
        padding: 2%;
    }
    #MainContent {
        margin-left: 0%;
        margin-right: 0%;
        margin-bottom: 5%;
        margin-top: 5%;
        width: 100%;
    }
    img {
        width: 45%;
    }
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }
}

h2 {
    font-size: 3vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    font-weight: 700;
}

#MainContent {
    background-color: lightsalmon;
    border: solid black 0.5vw;
    padding: 1%;
    display: grid;
    grid-template-columns: 1fr;
}

.imgHolder {
    display: flex;
    justify-content: center;
}

img {
    border: 0.5vw solid black;
    padding: 1%;
    background-color: white;
}

header {
    background-color: lightcoral;
    padding-bottom: 2%;
    border-bottom: solid black 0.5vw;
}

nav {
    background-color: lightcoral;
    padding-bottom: 1%;
    padding-top: 1%;
    border-bottom: solid black 0.5vw;
    width: 100%;
}

.navItem {
    text-align: center;
}

a {
    text-decoration: none;
    color: black;
}

.paraSection {
    margin-bottom: 7.5%;
}