@charset "UTF-8";

@font-face {
    font-family: Sedgwick;
    src: url(../fonts/SedgwickAveDisplay-Regular.ttf);
}

@font-face {
    font-family: Kaushan;
    src: url(../fonts/KaushanScript-Regular.ttf);
    src: url(../fonts/KaushanScript-Regular.0tf);
    src: url(../fonts/KaushanScript-Regular.woff);
    src: url(../fonts/KaushanScript-Regular.woff2);
}

@font-face {
    font-family: Kalam;
    src: url(../fonts/Kalam-Regular.ttf);
}

@keyframes navSpread {
    0% {flex-grow: 1;}
    100% {flex-grow: 2;}
}

html {
	display: block;
	width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
    font-size: 24px;
}

* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow: hidden;
}

@media screen and (max-width: 1200px){
    #main_title h1 {
        padding-left: 5%;
    }    
}

body {
    background-color: #d1d1e0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

#wideImg {
    width: 100%;
    height: 100%;
}

a, a:visited {
    color: #d1d1e0;
    text-decoration: none;
}

/* HEADER */

header {
    font-family: Sedgwick, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    z-index: 2;
    position: sticky;
    top: 0%;
    left: 0%;
    min-height: 20%;
}

#main_title {
    width: 100%;
    background-color: #7676a2;
    padding: 1% 0;
    margin-bottom: 1%;
    text-align: center;
    color: #d1d1e0;
}

#main_title h1 {
    font-size: 2rem;
    padding-left: 4%;
}

#main_title p {
    font-size: 1.2rem;
}

#pseudo {
    font-size: 2.5rem;
}

nav {
    display: flex;
    width: 100%;
    background-color: #7676a2;
}

nav a {
    flex-grow: 1;
    text-align: center;
    padding-top: 0.3%;
}

nav a:hover {
    /*flex-grow: 3;*/
    animation-name: navSpread;
    animation-duration: 800ms;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: #d1d1e0;
    color: #7676a2;
}

/* CONTENT */

#container {
    display: block;
    min-width: 100%;
    height: 76%;
    border: none;
}

/* FOOTER */

footer {
    width: 100%;
    min-height: 3%;
    background-color: #7676a2;
    color: #d1d1e0;
    position: fixed;
    bottom: 0%;
    padding: 0.2% 1% 0.3% 1%;
    z-index: 2;
}

footer p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 0.7rem;
}
