@import url('https://github.com/githubnext/monaspace/blob/ac94165d2a6d5fb60f876c22989e986dcaaf8a87/fonts/webfonts/MonaspaceNeon-Regular.woff');

@import url('https://github.com/githubnext/monaspace/blob/ac94165d2a6d5fb60f876c22989e986dcaaf8a87/fonts/webfonts/MonaspaceArgon-Regular.woff');

@import url('https://github.com/githubnext/monaspace/blob/ac94165d2a6d5fb60f876c22989e986dcaaf8a87/fonts/webfonts/MonaspaceXenon-Regular.woff');

@import url('https://github.com/githubnext/monaspace/blob/ac94165d2a6d5fb60f876c22989e986dcaaf8a87/fonts/webfonts/MonaspaceRadon-Regular.woff');

@import url('https://github.com/githubnext/monaspace/blob/ac94165d2a6d5fb60f876c22989e986dcaaf8a87/fonts/webfonts/MonaspaceKrypton-Regular.woff');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Monaspace Argon', monospace;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    color: #43598e;
    background-color: #181818;
}

section {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100vh;
    margin-bottom: 50px;
    color: #4f5ce4;
    padding: 50px;
    overflow-wrap: break-word;
}

.hidden {
    opacity: 0;
    transition: all 3s;
}

.show {
    opacity: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    background-color: rgba(226, 226, 226, 0.4);
    color: #fff;
    border: 2px solid rgba(0, 0, 0, 0.267);
    border-radius: 30px;
}

.logo { 
    font-size: 2em;
    color: #FFB238;
    user-select: none;
}

.navigation a {
    position: relative;
    font-size: 1.1em;
    color: #4f5ce4;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #F55536;
    border-radius: 5px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .5s;
}

.navigation a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.doclinks a {
    text-decoration: none;
    color: #4f5ce4;
}

.doclinks a:hover {
    text-decoration: underline;
    text-decoration-color: #4f5ce4;
    animation: underline 0.5s ease-in-out infinite alternate;
}


@keyframes underline {
    0% {
        text-decoration-color: rgba(0, 0, 0, 0);
    }
    100% {
        text-decoration-color: #4f5ce4;
        text-decoration-thickness: 3px;
    }
}

