:root{
    --text-color: #ff0000;
    --shadow-color: #ff0000;
}

@font-face
{
    font-family: 'B612';
      src:url('B612-Regular.ttf');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
}

@font-face
{
    font-family: 'B612';
      src:url('B612-Bold.ttf');
      font-weight: 700;
      font-style: bold;
      font-display: swap;
}

@font-face
{
    font-family: 'B612';
      src:url('B612-Italic.ttf');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
}
*{
    padding: 0;
    margin: 0;
    font-family: b612;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    padding : 5px;
    background: black;
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100vh;
    height: fit-content;
    overflow-x: hidden;
}

nav{
    width: 100%;
    height: 10vh;
    position: sticky;
    top: 0;
    background: black;
}
.navbar{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid var(--text-color);
}

.navbar h1{
    color: white;
    font-size: 2rem;
    font-family: B612;
    font-weight: 700;
    width: 100%;


}
.navbar h1 span{
    color: var(--text-color);
    text-shadow: 0px 0px 8px var(--shadow-color);
}
.navbar .links{
    display: flex;
}


.navbar .links a{
    position: relative;
    font-size: 1rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}
.navbar .links a::before{
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.2s linear;
}
.navbar .links a:hover::before{
    width: 100%;
}
.navbar .links a:hover{
    color: var(--text-color);
}


.content{
    margin-left: 20vh;
    margin-right: 20vh;
    margin-top: 3rem;
    font-weight: 400;
    
}   
.anything{
    justify-content: space-evenly;
    flex-direction: row;
    display: flex;
    align-items: flex-start;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}



.content span{
    color: var(--text-color);
    text-shadow: 0px 0px 8px var(--shadow-color);
}

.content h1{
    font-size: 20px;
}

.container{
    padding: 1rem;
    border: solid 2px var(--text-color);
    box-shadow: 0px 0px 15px var(--shadow-color);
    border-radius: 1rem;
    margin: 1rem;
    max-width: 35vh;
}
.container img{
    max-width: 30vh;
    width: auto;
    border-radius: 5px;
}

.container table {
    border-top: var(--text-color) solid 2px;
    margin: 5px;
}
.awnser{
    text-align: right;
}
.question{  
    text-align: left;
    text-decoration: underline;
    vertical-align: text-top;
    
}

.blud {
    height: 50px;
    transform: translateY(10px);
    position: relative;
}
.random{
    height: 50%;

}
.flf{
    text-align: center !important;
}
.fov {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.personnage {
    margin-top: 6vh;
}

.personnage span{
    color: var(--text-color);
    text-shadow: 0px 0px 8px var(--shadow-color);
}

.fanart {
    margin-top: 6vh;
}   

footer {
    border-top: 2px solid var(--text-color);
    font-size: smaller;
    padding : 1rem;
    margin-top : 10vh;
    text-align: center;
}

.external{
    padding : 5rem;
    margin : 3rem;
}
.external li {
    margin-left: 30%;
}
a {
    text-decoration: underline;
    color : white;
}
a:active{
    text-decoration: underline;
    color: white;
}
a:hover{
    color: var(--text-color);
}
.km:hover{
    color : #FCC419;
    
}