nav {
    background-color: black;
    color: white;
    position: fixed;
    top: 0%;
    z-index: 30;
    overflow: hidden;
    width: 100%;
}

nav wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    row-gap: 10px;
    padding: 20px;
}

nav a {
    float: left;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    margin: 0 20px;
}

.header-right {
    float: right;
}
.header-right a:first-child {
    margin-left: 0;
}

@media screen and (max-width: 625px) {
    nav a {
        float: none;
        /* display: block; */
        text-align: left;
        margin: 0 15px;
    }

    .header-right {
        float: none;
        margin-top: 1px;
    }
}

@media screen and (max-width: 400px) {
    nav a {
        float: none;
        /* display: block; */
        text-align: left;
        margin: 0 5px;
    }
}

.logo {
    width: max-content;
    margin-left: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    float: none;
}