*{
    font-family: 'Source Code Pro', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
}

body, html{
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 100%;
    height: 100%;
    text-align: center;
    color: white;
    background-color: black;
    overflow-y: hidden;

    scroll-behavior: smooth;
}
/* body{
    min-height: 100%;
} */

.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; */
    overflow-y: hidden;

    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.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;
}

.content{
    top: 0;
    position: fixed;
    height: 100%;
    min-height: 100%;
    width: 100%;
    z-index: 10;

    overflow-y: auto;
}

.content-page{
    height: auto;
    min-height: 100%;
    position: fixed;
    width: 100%;
    z-index: 20;
    top: 0;

    overflow-y: auto;
}

.home{
    display: block;
    width: 150px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px 5px white;

}
.home a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    text-shadow: 0px 0px 35px rgb(6, 228, 17);
    line-height: 50px;
}
.home:hover{
    transition: 0.2s;
    box-shadow: 0px 0px 35px 5px rgb(6, 228, 17);
}
.home a:hover{
    transition: 0.2s;
    color: rgb(6, 228, 17);
    text-shadow: 0px 0px 35px white;
}

.container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 340px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Wiki btn */
.homebtn
{
    background-color: rgba(36, 36, 36, 0);
    min-width: 150px;
    max-width: 300px;
    width: auto;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid red;
    line-height: 50px;
    box-shadow: 0px 0px 20px 10px rgb(255, 255, 255);
}
.homebtn a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}
.homebtn:hover{
    transition: 0.2s;
    box-shadow: 0px 0px 20px 15px rgb(88, 180, 206);
    background-color: rgb(36, 36, 36);
}
.homebtn a:hover{
    transition: 0.2s;
    color: rgb(0, 250, 0);
    font-size: 18px;
    font-weight: bolder;
}

.info{
    color: rgb(194, 182, 11);
}
.info a{
    color: red;
    text-decoration: none;
}
.info a:hover{
    transition: 0.2s;
    color: rgb(100, 154, 190);
    font-weight: bold;
}

.patch{
    display: block;
    word-wrap: break-word;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    /* margin-left: auto;
    margin-right: auto; */
    margin-left: 50px;
    text-align: left;
    width: 500px;
}

h3 a{
    font-weight: bold;
    color: red;
}

.foot{
    margin-top: 5px;
}


/* Scroll bar */
/* width */
::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f100;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(33, 0, 182);
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(21, 6, 85);
  }

.goog-te-banner-frame{
    display: none;
    height: 0px;
}
#google_translate_element{
    top: 0;
    margin-left: auto;
    margin-right: auto;
}

