@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap%27');
*  {
    padding: 0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


 
li {
    list-style-type: none;
}

 
nav {
    height: 80px;
}

 
.blue {
    color: blue;
}

 
.navcontainer {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-right: 12px;
}

 
.navlinks {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
}

 
.navlink {
    margin-left: 12px;
    text-decoration: none;
    color: black;
    font-size: 24px;
    padding: 12px 24px;
}

 
.navlink:hover {
    background-color: blue;
    color: white;
    border-radius: 4px;
    animation: all 300ms ease;
}

 
.personallogo {
    font-size: 32px;
    padding: 12px 24px;
    font-weight: 700;
}

 
.headercontainer {
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}