*{
    margin: 0px;
    padding: 0px;
}
body{
    width: 80%;
    margin:0 auto;

}

nav{
    top:0px;
    left: 0px;
    width: 100%;
    font-size: 30px;
    background-color: midnightblue;
    color: white;
    position: fixed;
	z-index:1; 
    flex-wrap: wrap;
}

ul {
    display: flex;
    justify-content: space-evenly;

    flex-wrap: wrap;
}

ul li {
    min-width:7ch;
    list-style-type: none;
}
 ul{
    display: flex;
    list-style-type: none;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
li{
    margin: 20px;
    color: white;
}
li a{
    text-decoration: none;
    color: white;
    padding: 10px;
} 
a:hover{
    color: blue;
    background-color: white;
}

img{
    width: 500px;
    height: 500px;
}
h1{
    display: flex;
    margin-top: 140px;
    font-size: 8rem;
    padding-bottom: 50px;
}
h2{
    font-size: 4rem;
    margin-bottom: 50px;
}
div{
    display: flex;
    margin: 100px;
    font-size: 30px;

}
footer{
    display: flex;
    flex-wrap: wrap;
    margin: 40px;
    font-family: Arial;
    justify-content: space-evenly;
}
section{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top:200px;
    justify-content: space-evenly;
}


@media (max-width: 728px) {
    body{
        width: 100%;
    }

    div{
        display: flex;
        justify-content: space-between;
        font-size: 1.5rem;
        margin: 20px;
    }
    h1{
        font-size: 7rem;
        margin-top: 80px;
        margin-bottom: 50px;
    }
    section{
        align-items: center;
    }
    p{
        width: 100%;
    }
    nav{
        display: flex;
        flex-wrap: wrap-reverse;
    }
}