body, html{
    height: 100%;
}

nav{
    background-color: #093051;
    padding-top: .25%;
    padding-bottom: .25%;
}

nav ul{
    display: flex;
    flex-direction: row;
    column-gap: 5%;
    align-items: center;
    justify-content: center;
}

nav li{
    text-transform: uppercase;
    font-family: sans-serif;
    color: white;
    list-style-type: none;
}

nav a:hover{
    color:lightblue;
}

nav a{
    color: white;
    text-decoration: none;
}

#hero{
    background-image: url(background.jpg);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;    
}

#herocontent{
    text-align: center;
    padding-top: 1%;
    
}

#hero h1{
    font-family: serif;
    text-transform: uppercase; 
    color: white;
    line-height: 10%;
}

#hero p{
    font-family: serif;
    color: white;
    font-style: italic;
}

#subnav{
    text-align: center;
}

#hero ul{
    display: flex;
    flex-direction: row;
    column-gap: 3%;
    align-items: center;
    justify-content: center;
}

#hero li{
    list-style-type: none;
    border: 1px solid white;
    transition: background-color 2s;
}

#hero li:hover{
    background-color:  rgba(255,255,255,50%);
}

#text{
    background-color: #093051;
    color: white;
    font-family: serif;
    font-style: italic;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 1%;
    padding-bottom: 1%;
    line-height: 150%;
    text-align: center;
    position:sticky;
    bottom:6%;
}

footer{
    background-color: black;
    color: white;
    font-family: sans-serif;
    text-align: center;
    padding-top:.2%;
    padding-bottom: .2%;
    font-size: 80%;
    position:sticky;
    bottom:0%;
}