body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 18px;
    font-family: 'Dosis', Helvetica, sans-serif;
    color: hsl(227, 36%, 23%);
    background-color: hsl(184, 7%, 80%);
}

/*
@media (prefers-color-scheme: dark) {

    /* defaults to dark theme 
    body {
        color: #eee;
        background-color: #121212;
    }

    body.light-theme {
        color: #222;
        background-color: #64814e;
    }
}
*/
section {
    padding: 2em 5em;
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

nav ul {
    align-self: center;
}

/* header and nav styles! */
header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #021c26;
    text-align: center;
    align-items: center;
    border: paleturquoise;
    border-radius: 30px;
    padding: 10px 20px;
    margin: auto;
    margin-top: 2%;
    padding: 20px;
    font-family: "Merienda", Arial;
    width: 85%;

    .logo {
        width: 15%;
        border-radius: 40%;
        padding: 10px 30px 10px 35px;
        background-color: hsl(151, 39%, 28%);
    }
}

.loseyourhead {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    border: paleturquoise;
    border-radius: 30px;
    padding: 10px 20px;
    margin: auto;

}

.logo img {
    width: 15%;
}



nav li {
    display: inline;
    text-align: right;
    padding: .5em;
    font-family: "Merienda", Arial;
}

nav {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}


nav li a {
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
    font-size: 1.5em;
    float: left;
    display: block;
    padding: 14px 16px;
    text-decoration: none;
}

nav img {
    width: 75%;
}

img {
    max-width: 100%;
    object-fit: contain;
}

h1 {
    font-family: 'Merienda', Tahoma, sans-serif;
    margin-bottom: 0;
    font-size: 3.5em;
    font-weight: bold;
}

h2 {
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    margin-top: 1em;
}

h3 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-top: 1em;
}

a {
    color: #ffffff
}

a:hover {
    color: #aaaaaa
}

.btn {
    background-color: rgb(129, 113, 218);
    color: #ffffff;
    border: 3px solid black;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    padding: 1em;
    border-radius: 20px;
}

.btn:hover {
    background-color: rgb(87, 74, 160);
    color: #ffffff;
    border: 3px solid black;

}

form {
    padding: 0em 5em 2em 2em;
}

form input {
    height: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
    margin: .5em 0em;
}

input [type=text],
select,
textarea {
    width: 100%;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}