header {
    background-color: rgb(211, 238, 211);
    padding: 1rem;
}

nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
    border-color: darkolivegreen;
}

nav ul li a {
    background-color: rgb(122, 188, 122);
    padding: 34px;
    text-align: center;
    border-radius: 1rem;
    text-decoration: none;
    color: darkgreen;
    font-weight: bold;
}
nav ul li a:hover{
    color: aliceblue;
    text-decoration: underline;
}

header img {
    float: left;
    width: 6rem;
}
class img {
    max-width: 20%;
    float: right;
}

img{
    max-width: 4rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    float: left;
    margin-right: 1rem;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 1rem;
    margin: auto;
    text-align: left;
    padding: 1rem;
}

h1{
    padding-top: 1rem;
    font-size: large;
    text-align:center;
    font-weight: bolder;
    color:rgb(59, 90, 7)
}
h2{
    color: rgb(59, 90, 7);
    font-weight: bolder;
    text-decoration: underline;
    margin-bottom: 1rem;
}

h3{
    color:rgb(59, 90, 7);
    font-weight: bold;
    text-align: left;
    margin-top: 2rem;
}

p{
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


footer{
    background-color: rgb(211, 238, 211);
    padding: 2rem;
}


article form{
    margin: 2rem;
    text-align:justify;
}

@media screen and (max-width: 750px){
    header nav{
        display: flex;
        flex-direction: column;
        align-items: start;
        background-color: var (--darkoraange);
        max-width: 10rem;
    }
}
