@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
*{
    padding: 0;
    margin: 0;
    font-size: 100%;
}
.headerbackground{
    background-color: #9f94bc;
    height: 100px;
}
.header{
    display: flex;
    flex-direction: row;
    height: 100%;
}
.logo{
    border: 0px solid black;
    display: flex;
    flex-direction: row;
    width: 30%;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    margin-left: 20%;
}
.img-logo img{
    height: 60px;
    width: 80px;
}
.name-logo{
    margin-left: 5%;
}
.name-logo h1{
    font-size: 50px;
    color: #ffff;
    font-family: 'Fredoka';
    font-weight: 600;
}
.navmenu{
    border: 0px solid black;
    display: flex;
    flex-direction: row;
    width: 50%;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
}
a{
    text-decoration: none;
}
nav ul{
    list-style-type: none; 
    padding: 0; 
}
li,ul,nav{
    display: inline; 
    margin-right: 30px; 
}
nav ul li a {
    text-decoration: none; 
    color: inherit; 
}
.navmenu a{
    font-family: 'Fredoka';
    font-weight: 550;
    color: #ffff;
    font-size: 30px;
}