:root{
    --padding-general: 20px;
    --spectralType0: #845ec2;
    --spectralTypeB: #d65db1;
    --spectralTypeA: #ff6f91;
    --spectralTypeF: #ff9671;
    --spectralTypeG: #ffc75f;
    --spectralTypeK: #0089ba;
    --spectralTypeM: #f9f871;
}

@font-face {
    font-family: KodeMono;
    src: url(./media/fonts/KodeMono-VariableFont_wght.ttf);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    color: white;
    font-family: KodeMono;
}

body{
    height: 100svh;
    width: 100vw;
    background-color: black;
}

#main{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100svh;
    width: 100vw;
    background-color: black;
}

/* GENERAL ELEMENTS */

li{
    list-style-type: none;
}

/* GENERAL CLASSES*/
.hide{
    display: none;
}

/* ANIMATIONS */
@keyframes appear {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes dissappear {
    0%{opacity: 1;}
    100%{opacity: 0;}
}