@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Loved+by+the+King&family=Roboto:wght@100&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f4eee2;
    color:#474740;
    font-family:"Ubuntu", serif;
    text-align: center;
}

.nav{
    background-color: #474740;
    width:100%;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header_nav{
    list-style: none;
    display: flex;
    margin-left: 10%;
}

.header_nav a{
    text-decoration: none;
    color: white;
    margin-left: 10%;
    font-size: 20px;
}

h1,h2,p{
    text-align: left;
    margin-top:20px;
    margin-left: 10px;
}

footer{
    margin-top:10%;
}

footer p{
    text-align: center;
}