* {
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    background-color: rgb(129 140 212);
}

header {
    background-color: rgb(121, 207, 238);
    background-image: url(../img/Japanese-Cherry-beautiful-tree.jpeg);
    background-size: cover;
    background-position: center 40%;
    text-align: center;
    height: 250px;
}

nav ul li{
    display: inline-block;
}

main {
    background-color: rgb(101, 105, 223);
    min-height: 500px;
    display: flex;
}
section {
    background-color: rgb(56, 186, 246);
    /* float: left; */
    width: 66%;
}
aside {
    background-color: rgb(49, 225, 46);
    /* float: right; */
    height: 300px;
    width: 34%;
}
footer {
    background-color: rgb(88, 213, 213);
        text-align: center;
    height: 150px;
}

header, nav, main, section, aside, footer {
    /* padding: 20px 15px 100px 15px; */
    /* top right bottom left */
    padding: 20px 15px 100px;
}

nav{
    padding: 20px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 10px;
    font-family: 'Oswald', sans-serif;

}


a{ 
    text-decoration: none;
    color: aquamarine;
    font-weight: bold;
}
a:hover {
    color: rgb(219, 255, 243);

}
h1, h2 {
    font-family: 'Oswald', sans-serif;
    color: aquamarine;
}

header h1{
    margin-top: 10%;
}