* {
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background: #101010;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Main colors used

    black   : #101010;
    white   : #FFFFFF;

    first   : #e094ea;
    second  : #afea94;
    third   : #252525;
    accent  : #4a4a4a;
*/

a {
    color: #e094ea;
    text-decoration: none;
}

a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* GLOBAL -------------------------------------------------- */

.global-container {
    background: #101010;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100vh;
    gap: 20px;
}

/* 00 SIDE -------------------------------------------------- */

.side-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    height: 100%;
    padding: 100px 0 20px 0;
}

nav {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    gap: 20px;
}

.nav-section {
    font-size: x-large;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 6px;
}

.nav-section a {
    color: #e094ea;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.nav-section a:hover {
    color: #FFFFFF;
}

.middle-cut {
    border-top: 2px dotted #4a4a4a;
    width: 50%;
    align-self: flex-start;
}

/* 01 MAIN -------------------------------------------------- */

.main-container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    width: 800px;
    height: 100%;
    gap: 10px;
    padding: 100px 0 20px 0;
}

/* Banner */

.banner img {
    width: 800px;
    height: 200px;
    border-radius: 12px;
}

.content {
    border: 1px solid #4a4a4a;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
}

/* Header */

header {
    border-bottom: 2px dotted #4a4a4a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

/* Main */

main {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

/* Footer */

footer {
    border-top: 2px dotted #4a4a4a;
    display: flex;
    flex-direction: row;
    padding: 20px;
    width: 100%;
    gap: 20px;
}

footer img {
    aspect-ratio: 1/1;
    height: 100px;
}

.foot-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

.foot-section {
    border-bottom: 1px dotted #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    gap: 10px;
}

.foot-link a {
    margin-left: 8px;
}

/* 99 MORE -------------------------------------------------- */