.mobile {
    display: none;
}

.header.wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #111111;
    font-family: 'hack monospace';
    font-size: 20px;
}

.header.wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    margin: 32px;
    stroke-width: 1;
    stroke: green;
}

.header.wrapper a {
    text-decoration: none;
    display: block;
    cursor: pointer;
    overflow: hidden;
    color: unset;
}

.header.wrapper ::selection {
    background-color: unset;
}

.header.content {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}

.header.title {
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 40px;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 700;
}

.header.page-list {
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto 40px;
}

.header.page-list a {
    margin: auto 10px;
    position: relative;
}

@media screen and (max-width: 768px) {

    .mobile {
        display: block !important;
    }

    .header.page-list {
        opacity: 0;
        transition-duration: 0.5s;
        position: relative;
        width: unset;
        height: unset;
        padding: 0 !important;
        margin: 0 !important;
        transition-delay: 0s;
        flex-direction: column;
    }

    .header.title {
        left: unset;
        bottom: unset;
        height: 100px;
    }

    .header.content a {
        margin: 10px 0;
    }

    .header.wrapper {
        transition-duration: 0.5s;
        transition-delay: 0.35s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .header.wrapper.active {
        height: 100vh;
        transition-delay: 0s;
    }

    .header.wrapper.active .header.page-list {
        opacity: 1;
        margin-left: 0 !important;
        transition-delay: 0.35s;
    }

}
