*{
    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;
    text-align: center;
    min-height: 100%;
    color: white;
    background-color: black;
}

.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{
    height: auto;
    min-height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
    top: 0;

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

    font-weight: bold;
    font-size: 24px;
}

.container{
    width: 310px;
    height: auto;
    min-height: 100px;
    position: relative;
    overflow: hidden;
    margin: 10px auto;
    border: 1px white solid;
}
.one, .two, .three{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 1px;
    width: 100%;
    height: 100px;
    justify-content: space-between;
}
.one a img, .two a img, .three a img{
    width: 100px;
    height: 100px;
    z-index: 1;
}
.one a, .two a, .three a{
    margin: 0 auto;
    position: relative;
    display: block;
    text-decoration: none;
    color: white;
}
.one a p, .two a p, .three a p{
    height: 100px;
    width: 100px;
    position: fixed;
    text-align: center;
    line-height: 100px;
}
/* .one a p::after, .two a p::after, .three a p::after{
    
} */

.imglink
{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(51, 51, 51);
    border-radius: 10px;
    color: white;
    /* display: block; */
    width: 100px;
    height: auto;
    min-height: 120px;
    text-decoration: none;
}
.imglink img{
    height: 32px;
    width: 32px;
    margin: 0 auto;
}
.imglink:hover{
    transition: 0.5s;
    box-shadow: green 0px 0px 16px;
    z-index: 100;
    transform: translateY(-10px);
    scale: 2;
}

.content-2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    margin: 10px auto;

    margin-left: auto;
    margin-right: auto;

    width: 90%;
    height: auto;
}

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


/* 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;
}
