
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');


html{
    scrollbar-width: none;
    
}
#background{
    width: 100vw;
    height: 100svh;
    cursor: url(images/cursor.png), default;

}
h1 {
    font-size: 112px;
    background: -webkit-linear-gradient(90deg, hsl(240,100%,0%), hsl(254,67%,13%), hsl(275,82%,22%), hsl(297,65%,26%), hsl(324,58%,36%), hsl(345,54%,47%), hsl(8,70%,54%), hsl(25,89%,52%), hsl(38,97%,51%), hsl(49,90%,61%), hsl(49,90%,61%));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: absolute;
    height: 120px;
    width:50%;
    top:40%;
    left:50%;
    transform: translate(-50%,-50%);
    font-family: "Cookie", cursive;
    line-height: 112px;
}
p {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    font-family: "Cookie", cursive;
    font-size: 36px;
}
img {
    width:10%;
    position: absolute;
}
#images{
    --rand1: 0.5;
    --randY1: 0.5;
    --randX1: 0.5;
    --rand2: 0.5;
    --randY2: 0.5;
    --randX2: 0.5;
    --rand3: 0.5;
    --randY3: 0.5;
    --randX3: 0.5;

}
.img1{
    animation: myOrbit1 calc(10s * var(--rand1)) linear infinite;
    left:calc(100% * var(--randX1));
    top:calc(100% * var(--randY1));
    z-index: -100;
}
.img2{
    animation: myOrbit2 calc(10s * var(--rand2)) ease-in infinite;
    left:calc(100% * var(--randX2));
    z-index: -100;
}
.img3{
    animation: myOrbit3 calc(10s * var(--rand3)) infinite;
    left:calc(100% * var(--randX3));
    top:calc(100% * var(--randY3));
    z-index: -100;
}
@keyframes myOrbit1 {
    
    from { transform: rotate(0deg) translateX(15px) rotate(0deg) scale(110%); }
    to   { transform: rotate(360deg) translateX(15px) rotate(-360deg) scale(100%); }
}
@keyframes myOrbit2 {
    from { transform: rotate(0deg) translateX(15px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(15px) rotate(-360deg); }
}
@keyframes myOrbit3 {
    from { transform: rotate(0deg) translateX(15px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(15px) rotate(-360deg); }
}

.prev, .next {
    cursor: url(images/cursor.png), default;
    position: absolute;
    z-index: 101;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.2);
  }
  #start{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;

  }
  h2{
    background: -webkit-linear-gradient(#00c9ff,#92fe9d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 48px;
    font-weight: 900;
  }
  .loader{
    margin:auto;
    width: 150px;
  }