
body{
    width: calc(100vw - (100vw - 100%));
    height: 100svh;
    margin: 0;
}

header{
    max-height: 15svh;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding-left: 40px;
    padding-right: 40px;

    background-color: rgb(237, 237, 237);
  }

#logo{
    height: auto;
    max-height: 15svh;
    
}

nav{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:10px;
}
    
.sidelink{
    font-family: 'Open Sans', sans-serif;;
    size:16px;
    color: rgb(17, 72, 113);
    background-color: rgb(207, 218, 227);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom:5px;
    text-decoration: none;
    cursor: pointer;
    transition: color .15s ease-in-out,background-color .15s ease-in-out;
}

.sidelink:hover {
    background-color: rgb(17, 72, 113);
    color: rgb(207, 218, 227);
}

.languagelink > span{
    width:2em;
}