* {
    box-sizing: border-box;
    user-select: none;
    padding: 0;
    margin: 0
}

body,html {
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    width: 100%
}

body {
    background: #000
}

a {
    color: inherit;
    text-decoration: none
}

.link-wrapper {
    text-decoration: none;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.link-wrapper>.link-logo {
    transition: all .2s
}

.link-wrapper:hover .link-logo {
    content: url("../img/github-hovered.svg");
}

.link-logo {
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.tab-wrapper {
    padding: 2.8vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #efefef;
    margin-top: -2.5vh;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    z-index: 10;
    width: 6.3vw;
    transition: all .2s;
    position: relative
}

.tab-wrapper:hover:after {
    content: "";
    height: 1px;
    width: 100%;
    background: #ffd400;
    position: absolute;
    bottom: -1px;
    left: 0;
    animation: tab-border-slide-in .3s ease-out forwards
}

@keyframes tab-border-slide-in {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

.tab-wrapper-active {
    color: #efefef
}

.tab-wrapper:hover:not(.tab-wrapper-active) {
    color: #efefef
}

.tab {
    position: relative;
    font-size: .85rem;
    margin-top: .2vh;
    font-weight: 700
}

.tab:after {
    content: "";
    height: .7vh;
    width: .7vh;
    background: #ffd400;
    position: absolute;
    left: -1.1vh;
    top: .2vh;
    -webkit-clip-path: polygon(100% 0,0 0,0 100%);
    clip-path: polygon(100% 0,0 0,0 100%)
}


.header {
    width: 100%;
    max-width: 100%;
    height: 1.15vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.13vw;
    box-sizing: border-box;
    margin-top: 2.8vh
}

.logo-wrapper {
    display: flex;
    flex: 0.4 1;
    height: 100%
}

.logo {
    height: 130%;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}


.header-links {
    height: 100%;
    display: flex;
    gap: 1.1vw;
    flex: 0.4 1;
    justify-content: flex-end
}

.tabs {
    height: 100%;
    display: flex;
    flex: 0.2 1;
    justify-content: center
}

.footer {
    width: 100%;
    max-width: 100%;
    height: 3vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.13vw;
    box-sizing: border-box;
    font-size: .87rem;
    color: #efefef;
    margin-bottom: 1.8vh
}

.date-label,.date-wrapper {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: flex
}

.date-label {
    background: #efefef;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    padding: 0 .3vw
}

.date {
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #efefef;
    font-weight: 400;
    font-size: .85rem;
    padding: 0 .75vw;
    border: 1px solid #efefef
}

.footer-tag {
    transition: all .25s
}

.footer-tag:hover {
    color: #efefef
}

@font-face {
    font-family: bender;
    src: url(../fonts/bender-regular.ttf) format("truetype");
    font-display: swap;
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: bender;
    src: url(../fonts/bender-black.ttf) format("truetype");
    font-display: swap;
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: bender-fallback;
    src: local("Arial");
    ascent-override:90.03%;descent-override:17.61%;line-gap-override:2.94%}

.body-class {
    font-family: bender,bender-fallback
}

.layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    background: url(../img/desktop-background.png) no-repeat 50%;
    background-size: cover;
    align-items: center;
    position: absolute
}

.status-wrapper {
    display: flex;
    align-items: center;
}