.nav{
    width: 100%;
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    margin-top: 10px;
    position: sticky;
    top: 0px;
    background-color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 100;
}

@media only screen and (max-width: 750px) {
    .nav{
        position: relative;
    }
}

.links{
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    justify-content: center;
    padding: 0 15px;
    row-gap: 5px;
}

.nav a[current]{
    text-decoration-style: solid;
    text-decoration: underline;
}

.nav a{
    text-wrap: nowrap;
}

.logo{
    background-image: url("../images/RSS_logo_wit_DEF.png");
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
}