/* 
    Created on : March 2020
    Author     : RICHE Vincent
*/

@import url("common.css");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 0;
}

html,
body {
    min-height: 100%;
    height: 100%;
}

body {
    content: "";
    z-index: -1;        
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;   
    
    transform-origin: top left;

    background-color: var(--main-background-color);
}

body:before {    
    filter: blur(2px);
}

#navigation {
    position: absolute;
    top: 2.5%;
    left: 1%;
    width: auto;
    height: auto;
}

#navigation li {
    width: auto;
    height: auto;
    border-radius: 50%;
    margin: 30% 0 0 0;
    background-color: var(--main2-color);
}

#navigation li:first-child {
    margin: 0;
}

#navigation li a {
    display: flex;
    width: 3vw;
    height: 3vw;
    margin: auto;
}

#navigation li a img {
    display: block;
    width: 75%;
    height: 75%;
    margin: auto;
}

#loader {
    display: block;
    width: 100%;

    margin: 50vh auto 0 auto;
    transform: translateY(-80%);
}
.loader {
    display: block;
    position: relative;
    width: 150px;
    height: 150px;
    margin: 2.5% auto 0 auto;
}
.loader:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    background-image: url("../Images/ico2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin: calc(25% + 6%);
    animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 8px;
    border: 6px solid var(--main-text-color);
    border-radius: 50%;
}
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}  

#quote {
    width: 70%;
    margin: 50vh auto 0 auto;
    transform: translateY(-50%);
}

#text,
#text i,
#episode,
#episode i {    
    text-align: justify;
    font-size: 1.2vw;
    font-family: "Blue Highway";
    color: var(--main-text-color);
}

#episode {
    margin-top: 2%;
}
#episode,
#episode i {    
    font-size: 1.0vw;
    text-align: right;
}

#footer {
    position: absolute;
    bottom: 0;
    padding: 1% 0 0.5% 0;
    width: 100%;
    height: auto;
}

#footer p,
#footer a {
    color: var(--main-text-color);
    text-align: center;
    font-size: 1.2vw;
    font-family: "Maxwell Regular";
}