@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    list-style: none;
    font-family: sans-serif;
    background: url(untitled.png);
    background-size: 120%;
    font-family: 'Open Sans', sans-serif;
}
::-webkit-scrollbar{
    height: 0;
    width: 0;
}
#head{
    position: absolute;
    top: 0;
    left: 0;
    height: 8vh;
    width: 100%;
    background-color: #006eff;
}
nav{
    position: absolute;
    top: 1%;
    left: 80%;
    height: 100%;
    width: 38vh;
    font-size: 1.4em;
}
ul{
    position: relative;
}
li{
    position: relative;
    text-decoration: underline;
    padding: 17px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}
a{
    color: white;
    text-decoration: none;
}
a:hover{
    color: black;
}
.logo{
    position: absolute;
    top: 2%;
    left: 0.5%;
    height: 70px;
    width: 70px;
    background: url(ggg.bmp);
    background-size: cover;
    border-radius: 50px;
    z-index: 1;
}
.terms{
    position: absolute;
    top: 11%;
    left: 2%;
    height: 830px;
    width: 97%;
    overflow-y: scroll;
    border-radius: 20px;
    background-color: #892be27c;
}
.terms:hover{
    cursor: default;
    transition: 1s ease;
    background-color: #892be2c2;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}
.termcon{
    position: relative;
    top: 0;
    left: 0;
    height: 7%;
    width: 100%;
    background-color: #ffe600;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    border-radius: 20px 20px 0 0;
}
p{
    font-weight: bold;
    font-size: 25px;
    line-height: 40px;
}
.copyrighttxt{
    position: fixed;
    top: 97.7%;
    height: 22px;
    width: 100%;
    background-color: #0000007c;
    color: #000000;
    font-weight: bold;
}
.me{
  position: fixed;
  top: 94%;
  left: 97%;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #a100a1;
  color: white;
  font-size: 30px;
  text-align: center;
  cursor: default;
  overflow: hidden;
  border: 2px solid white;
  z-index: 3;
}
.me:hover{
  left: 87%;
  width: 242px;
  border-radius: 50px;
  background-color: #a100a1;
  color: white;
  transition: 1s ease;
}
@media screen and (max-width: 880px){
    nav{
        position: fixed;
        left: 2%;
    }
}
@media (max-width: 952px){
    body{
        background-size: 570%;
    }
    #head{
        height: 9vh;
        width: 110%;
        box-shadow: 2px 3px 8px #57575780;
    }
    nav{
        display: none;
    }
    .me{
        display: none;
    }
    .copyrighttxt{
        display: none;
    }
}