* {
    font-family: 'Roboto', sans-serif; 
}


body {
background-color: mediumaquamarine;
}

header nav ul {
    box-sizing: border-box;
    margin: 1em;
    padding: 2em;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    text-align: center;
    list-style: none;
    align-content: center;

}


img {
    display: block;
    margin: auto;
}

h1 {
    color: teal;
    text-align: center;
    font-size: 18px;
}


h3 {
    color: lightslategray;
    text-align: center;
    font-size: 18px;
}

h2 {
    color: lightslategray;
    text-align: center;
    font-size: 18px;
}

header {
    margin: 0;
    padding: 1em;
    box-sizing: border-box;
    background-color: mediumaquamarine;
}

main {
    margin: 0;
    padding: 1em;
    box-sizing: border-box;
    background-color: lavender;
    text-align: center;
}


footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
    font-style: italic;
}



p {
    font-size: 15px;
}

a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: aqua;

}





