/*
    Important colors:
    
    link color:     190, 190, 190
    magic sand:     234, 229, 159
    



*/


@font-face {
    font-family: ui_font;
    src: url(assets/Lekton-Regular.ttf);
}

@font-face {
    font-family: body_font;
    src: url(assets/Assistant-Regular.otf);
}


/* overrides */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    margin: 0px;
}



/* animations */

@keyframes ease_in_navbar {
    from {
        width: 100vw;
    }

    to {
        width: 0%;
    }

}


@keyframes ease_in_form {
    from {
        color: rgb(255, 255, 255);    

    }

    to {
        color: rgb(0, 0, 0);    
    }

}


@keyframes ease_in_separator {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Title stuff */


.title_container {
    height: 220px;
}


.sb_title {
    font-family: ui_font;
    font-size: 74px;    
    text-align: center;

    color: rgb(70, 70, 70);
    text-decoration: none;
    
}


.sb_subtitle {
    font-family: ui_font;
    font-size: 12px;    
    text-align: center;

}



/* general page */

.mainform {
    width: 750px;
    margin-left: auto;
    margin-right: auto;


    /*
    border-left-color: rgb(120, 120, 120);
    border-left-width: 2px;
    border-left-style: solid;
    */
}


.filler {
    height: 700px;
}



/* navigator stuff */

.navbar {
    width: 100vw;
    top: 0px;
    left: 0vw;
    background-color: rgb(20, 20, 20);
    height: 50px;
    position: absolute;
    z-index: -2;

    

}


.navbar_cover {
    width: 0%;
    animation-name: ease_in_navbar;
    animation-duration: .6s;
    animation-timing-function: linear;

    background-color: rgb(255, 255, 255);
    height: 50px;
    position: absolute;
    top: 0px;
    left: 0vw;
    z-index: 1;

}


.navitem {
    display: block;

    width: 19%;
    font-family: ui_font;
    font-size: 17pt;

    background-color: rgb(20, 20, 20);
    color: rgb(220, 220, 220);
    text-align: center;        
    float:left;
    

    padding-top: 15px;
    height: 35px;

    margin: auto;

    transition: border-top-width .1s;
    

}


.navitem:hover {
    background-color: rgb(80, 80, 80);
    color: rgb(190, 190, 190);

    border-bottom-color: rgb(120, 120, 120); 
    border-top-color: rgb(234, 229, 159);

    border-top-width: 4px;
    border-top-style: solid;
    
}




/* Body text */


.text_form {
    margin-top:10px;
    font-family: body_font;
    font-size: 17pt;
    position:relative;
    float:left;


    animation-name: ease_in_form;
    animation-duration: .6s;

}

.form_spacer {
    margin: 20px;
}


.text_header {
    margin-top:20px;
    margin-bottom:20px;

    width: 70%;
    font-size: 40pt;

}

.text_separator {

    border-bottom-style: solid;
    border-bottom-color: rgb(234, 229, 159);
    border-bottom-width: 2px;
    margin-top: 10px;
    margin-bottom: 40px;
    
    animation-name: ease_in_separator;
    animation-duration: 1.4s;


}



/* Footer */
.footer {

    font-family:body_font;
    font-size: 13px;
    color: rgb(120, 120, 120);
    text-align:center;
}


