* {
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
    background-color: lavenderblush;
}

header {
    background-color: brown;
    background-image: url("../img/58e7536857c9e814298f41897668e9a4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 200px;
    text-align: center;
    background-position: center 70%;
    font-family: 'Montserrat', sans-serif;
}

nav ul li {
    display: inline-block;
}

main {
    background-color:antiquewhite;
    min-height: 1000px;
    text-align: center;
    display: flex;
}
p {
    text-align: left;
}
section {
    background-color:mistyrose;
    width: 66%;
    font-size: 15px;
}

aside {
    background-color: aqua(20, 58, 82);
    width: 34%;
    
}

.clear {
    clear: both;
}

footer {
    background-color:floralwhite;
    height: 200px;
}

header,
main,
section,
aside,
footer {
    /* padding: 20px 15px 100px 15px; */
    padding: 20px 15px 100px;
}

nav {
    padding: 20px 15px;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

header h1{
    color:darkolivegreen;
    font-family:'Times New Roman', Times, serif
}