@import url('https://fonts.cdnfonts.com/css/minecraft-3');
@import url('https://fonts.cdnfonts.com/css/minecraft-4');

body {
    margin: 0;
    padding: 0;
    color: white;
    background: linear-gradient(to right, #7800af, #00095c);
    transition: max-width 0.2s, max-height 0.2s;
}

::-moz-selection { 
  color: #fff;
  background: #fff;
  border-radius: 10px;
}

::selection {
  color: #fff;
  background: #7800af;
  border-radius: 10px;
}

body, html {
    height: 100%;
}

header {
    height: 30%;
    text-align: center;
}
.logo {
    width: 110px;
    height: 110px;
    position: relative;
    transform: rotate(100%);
    z-index: -2;
}
.stayDiv{
    font-family: 'Minecraft', sans-serif;
    font-weight: lighter;
}
.stayDiv:nth-child(4){
  animation: ipSonaria 2s ease;
  transform: translateY(0);
  opacity: 1;
}

@keyframes ipSonaria {
  0% { 
    transform: translateY(-80px); 
    opacity: 0;
  }
  40% { 
    transform: translateY(-80px); 
    opacity: 0;
  }
  45% { 
    transform: translateY(0); 
    opacity: 1;
  }
  55% { 
    transform: translateY(-10px);
  }
  65% { 
    transform: translateY(5px);
  }
  75% { 
    transform: translateY(-2px);
  }
  85% { 
    transform: translateY(1px);
  }
  100% { 
    transform: translateY(0); 
    opacity: 1;
  }}

@media  screen and (max-width: 768px) {
    .stayDiv{
        font-size: 25px;
    }
    .logo{
        width: 80px;
        height: 80px;
    }
}


::-webkit-scrollbar { 
    width: 12px;
    height: 10px;
    border-radius:10px;
  }
  

  ::-webkit-scrollbar-track {
    background-color: #00095c;
  }
   

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(rgb(111, 46, 216), rgb(45, 56, 177)); 
    border-radius:10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(rgb(88, 31, 180), rgb(34, 44, 158));
    border-radius:10px;
  }