*{
    padding: 0px;
    margin: 0px;
}

body {
    background-color: #EEE;
    color: rgb(202, 225, 209);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    text-align: center;
    background-color: #EEE;
    width: fill;
    height: 23px;
    padding: 0px 0px 0px 0px;
}

header h1 {
    font-size: 1em;
    color: black;
    letter-spacing: 4px;
    text-shadow: 0px 0px 0px #222;
}

section.hero {
    min-height: 550px;
    background-image: url(/cis195/images/cloudy-smith.JPEG);
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

.hero_text {
    color: #EEE;
    font-family: "Notable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6em;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding-top: 180px;
    letter-spacing: .3em;
    text-shadow: 4px 3px 3px #09160e;
}

h2, h3 {
    background-color: #EEE;
    font-family: "Notable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2em;
    color: #17044e;
    margin: 30px 0px 25px 40px;
    padding-top: 30px;
    text-shadow: 0px 2px 3px #302f2f;
}

h2 + p, p2 {
    text-indent: 20px;
    display: block;
    color: black;
    padding: 0px 0px 15px 40px;
    margin-right: 380px;
}


img {
    width: 300px;
    float: right;
    margin-right: 40px;
    margin-top: 50px;
    border-radius: 50px;
    overflow: hidden;
    border: 4px solid #000;
    box-shadow: 0 0 25px #000;
}

nav {
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 40px;
}

.navs {
    flex: 0 1 calc(20% - 8px); 
    border-radius: 3px;
    box-shadow: 0 0 25px #000;
    transition: box-shadow .25s linear;
    max-width: 200px;
    min-height: 200px;
    background-image: url(/cis195/images/big-rock.JPEG);
    background-size: cover;
    background-color: #EEE;
    text-decoration: none;
    margin-top: 50px;
}

h4 {
    font-family: "Notable", sans-serif;
    letter-spacing: .1em;
    font-size: .9em;
    text-align: center;
    margin-top: 75px;
    margin-right: auto;
    min-width: 70%;
    background-color: none;
    color: #000;
    text-shadow: 0px 2px 3px #EEE;
}

.navs:hover {
    box-shadow: 0px 3px 8px #000;
}

footer {
    text-align: center;
    background-color: #17044e;
    color: #EEE;
    width: fill;
    height: 23px;
    padding-top: 10px;
    min-height: 30px;
    margin-top: 50px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} 