@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;
    position: relative;
    overflow: hidden;
    scroll-behavior: smooth;
}

.custom-scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 10px;
  height: 100vh;
  background: #6f00b91a;
  z-index: 100000;
  box-shadow: #460db1 0 0 15px;
}

.custom-thumb {
  width: 90%;
  background: linear-gradient(rgb(111, 46, 216), rgb(45, 56, 177)); 
  border-radius: 4px;
  position: absolute;
  cursor: pointer;
}

.custom-thumb:hover {
  background: linear-gradient(rgb(88, 31, 180), rgb(34, 44, 158));
}

::-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';
    font-weight: bolder;
}
.stayDiv:nth-child(2) {
  color: transparent;
  background: linear-gradient(to right, rgb(146, 78, 255), rgb(0, 9, 109)); 
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke-color: rgba(127, 47, 255, 0.226);
  -webkit-text-stroke-width: 1px;
}

.stayDiv:nth-child(3) {
  color: gray;
  color: transparent;
  background: linear-gradient(to right, rgb(168, 168, 168), rgb(58, 57, 57)); 
  background-clip: text;
  -webkit-background-clip: text;
}

.stayDiv:nth-child(3) span {
  color: transparent;
  background: linear-gradient(135deg, rgb(0, 177, 9), rgb(0, 116, 25)); 
  background-clip: text;
  -webkit-background-clip: text;
}

.stayDiv:nth-child(4){
  animation: ipSonaria 2s ease;
  transform: translateY(0), scale(1);
  opacity: 1;
}

.ip.loaded {
  animation: ipSonaria2 5s infinite;
}

@keyframes ipSonaria2 {
  0%{
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(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;
    }
    /* .custom-scrollbar, .custom-thumb {
      display: none;
    } */
    body {
      overflow: auto;
    }
}


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