*{
    padding: 0;
    margin: 0;
    height: auto;
    font-family: 'Source Code Pro', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

body{
    background-color: rgb(44, 44, 44);
    text-align: center;
    min-height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    color: white;
}

.background{
    position: fixed;
    position: -webkit-sticky;
    width: 100%;
    height: 100%;
    background-image: url("../img/erinium_background.png");
    top: 0;
    left: 0;
    filter: blur(3px);
    /* z-index: 1000; */

    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.content-page{
    height: auto;
    min-height: 100%;
    position: sticky;
    width: 100%;
    z-index: 2;
    top: 0;

    overflow-x: hidden;
    overflow-y: auto;
}

.index{
    overflow: hidden;
}

.toxp, .craft{
    height: auto;
    min-height: 100px;
    width: auto;
    min-width: 400px;
    /* margin-left: auto;
    margin-right: auto; */
    background-color: rgba(46, 46, 46, 0.432);
    border-radius: 20px;
    line-height: 100px;
    font-size: 30px;
}

a{
    color: white;
    text-decoration: none;
}
a:hover{
    transition: 0.2s;
    color: rgb(78, 133, 182);
}
h1{
    color: white;
}

.toxp{
    /* animation-duration: 0.55s;
    -moz-animation-duration: 0.55s;
    animation-name: start;
    color: #b85353; */
    animation: start .55s ease-in;
}
.craft{
    animation: startsec .55s ease-in;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
}

.wikibtn
{
    width: 150px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    border: 1px solid red;
    line-height: 50px;
    box-shadow: 0px 0px 4px rgb(255, 255, 255);
}
.wikibtn a{
    display: block;
    width: 100%;
    height: 100%;
}
.wikibtn:hover{
    transition: 0.6s;
    box-shadow: 0px 0px 20px rgb(255, 255, 255);
}
.wikibtn a:hover{
    transition: 0.6s;
    color: rgb(160, 9, 9);
}



@-webkit-keyframes start{
    0%{
        transform: skew(53deg) translateX(-500px);
    }
    100%{
        transform: skew(0deg);
    }
}
@-webkit-keyframes startsec{
    0%{
        /* margin-left: -300px;
        margin-right: -300px; */
        /* overflow-x: -300px; */
        transform: skew(-53deg) translateX(500px);
        /* opacity: 0%; */
    }
    100%{
        /* margin-left: auto;
        margin-right: auto; */
        /* overflow-x: 300px; */
        transform: skew(0deg);
        /* opacity: 100%; */
    }
}
@-webkit-keyframes opa{
    0%{
        opacity: 0%;
    }
    100%{
        opacity: 100%;
    }
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    animation: opa 1s ease-in;
}
.content{    
    /* margin-top: 500px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    height: auto;
}

.retour{
    color: red;
    font-size: 20px;
}

.backbtn{
    top: 5px;
    left: 5px;
    position: fixed;
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 50px;
    z-index: 11;
}
.backbtn:hover{
    transition: 0.3s;
    background-color: red;
}
.goog-te-banner-frame{
    display: none;
    height: 0px;
}
#google_translate_element{
    display: block;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: larger;
}
.goog-te-combo{
    width: 450px;
    height: 50px;
    text-align: center;
    font-weight: bolder;
    font-size: 24px !important;
}
.goog-te-combo option{
    display: block;
    width: 90%;
}


@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');