html, body {
    font-family: 'Klee One', cursive;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #363636;
    background: url('../assets/paper.png');
}

div {
    box-sizing: border-box;
}

.delimiter {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
}
.delimiter:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    left: 25%;
    right: 25%;
    background-color: rgba(83, 83, 83, 0.75);
}

.main {
    position: relative;
}

.navigation {
    position: fixed;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 1rem;
    left: 1rem;
    background: rgba(171,18,18,0.9);
    background: linear-gradient(180deg, rgba(171,18,18,0.9) 0%, rgba(117,23,38,0.9) 100%);
    border-radius: 6px;
    text-align: center;
    z-index: 2;
}

.navigation li {
    transition: all 0.1s ease 0s;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.75rem;
    background-color: #f5f5f5;
}
.navigation li:first-child {
    border-radius: 4px 4px 0 0;
}
.navigation li:last-child {
    border-radius: 0 0 4px 4px;
}
.navigation li:hover, .navigation li.active {
    color: #fff;
    font-weight: bold;
    background-color: transparent;
}

.navigation li span {
    vertical-align: middle;
}
.navigation li span.material-symbols-outlined {
    font-size: 2rem;
}
.navigation li span.desc {
    display: block;
    font-size: 0.5rem;
}

.navigation .delimiter {
    background-color: #f5f5f5;
    padding: 0.5rem 0;
}

.section {
    position: relative;
    width: 100%;
    height: 100vh;
}

.section#home .logo {
    position: absolute;
    width: 150px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.section#home .logo img {
    position: relative;
    display: block;
    width: 100%;
}

.section#home .logo span {
    position: relative;
    display: block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    left: calc(50% - 0.625rem);
}
