/* body & elements */
body {
    background-color: #f3f7ff;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    font-size: 200%;
    font-weight: bolder;
    border: none;
    text-shadow: 1px 1px 1px #6e5c27;
    font-family: "Silkscreen";
    margin: 50px;
    color: #8876f8;
}

main {
    font-family: "Source Sans 3", sans-serif;
    font-size: 95%;
    font-weight: 350;
    color: #8876f8;
    line-height: 2;
}

.container-1 {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

/* nav & link styling */
nav,
a {
    font-family: "Source Sans 3", sans-serif;
    font-size: 95%;
    font-weight: 600;
    background-color: transparent;
    text-decoration: none;
    margin-bottom: 2em;
    color: #8876f8;
}

a:hover {
    background-color: #e4deca;
}

/* img */
main img {
    padding: 5px;
    margin: 5px;
    width: 75vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

footer {
    margin-top: 25px;
    margin-bottom: 25px;
}