* {
    padding: 0px;
    margin: 0px;
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* 
    hsl(200, 97%, 65%) light blue
    hsl(250, 100%, 35%) dark blue
    hsl(55, 90%, 50%) yellow
    #ece9e9 white
    hsl(250, 98%, 20%) text blue
*/

body {
    background-color: #ece9e9;
}

header {
    background-color: #ece9e9;
}

header h1 {
    font-family: "Notable", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5vh;
    color: hsl(250, 98%, 20%);
    text-align: center;
    padding-bottom: 1vh;
    padding-left: 4vw;
}

nav {
    background-color: hsl(250, 98%, 20%);
}

nav ul {
    padding: 2vh;
    display: flex;
}

nav ul li {
    text-align: center;
    list-style: none;
    flex-grow: 1;
}

nav ul li a {
    font-size: 2vh;
    color: #ece9e9;
    text-decoration: none;
}

#primary {
    margin: 5vh auto;
    background-image: url(images/mainHero.jpg);
    background-size: cover;
    background-position: center;
    width:90%;
    border-radius: 43vh;
    border: 10px solid hsl(250, 98%, 20%);
    height: 86vh;
}

#primary #aboutUs {
    height: 40vh;
    width: 50%;
    margin: 13vh;
    background-color: #ece9e9;
    border-radius: 30vh;
    opacity: 80%;
    padding: 2vh 0vh;
}

#primary #aboutUs * {
    color:hsl(250, 98%, 20%);
}

#primary #aboutUs h2 {
    margin: 4vh 0vw;
    text-align: center;
}

#primary #aboutUs p {
    margin: 2vh 10vh;
}

footer {
    margin-top: 4vh;
    font-size: 1.5vh;
    padding: 1vh;
    text-align: center;
    background-color: hsl(250, 98%, 20%);
    color: #ece9e9;
}




