body {
    margin: 0;
    background-color: rgb(17, 17, 17);
    color: rgb(255, 255, 255);
    cursor: none;
  display: flex;
  height: 100vh;
  width: 100vw;
}
@font-face {
    font-family: 'Phrossa';
    src: url(fonts/Phorssa.ttf);
}
.oi-regular {
    font-family: "Oi", serif;
    font-weight: 400;
    font-style: normal;
  }
  
.frame {
    width: 100%;
    height: 200px;
    cursor: none;
}
.maintxt {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.shw1ps {
    font-size: 70px;
    font-family: 'Oi';
    opacity: 1;
    position: absolute;
    filter: drop-shadow(0 0 80px rgb(255, 255, 255));
    animation: fadeIn 2s ease-in-out;
}
.buttons {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 600px;
    top: 170px;
    gap: 30px;
}
.works1 {
    position: absolute;
    opacity: 0;
    width: 400px;
    height: 120px;
    border-radius: 100px;
    z-index: 200;
    cursor: none;
}

.workstxt {
    position: inline-block;
    width: 400px;
    height: 120px;
    border: 3px solid transparent;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Tiny5';
    font-size: 30px;
    z-index: 100;
}

.workstxt:hover {
    border: 3px solid  gray;
}
.blurredfortxt1 {
    position: absolute;
    width: 380px;
    height: 100px;
    filter: blur(10px);
    border-radius: 100px;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.055);
}
.contacts1 {
    position: absolute;
    opacity: 0;
    width: 400px;
    height: 120px;
    border-radius: 100px;
    z-index: 200;
    cursor: none;
}
.contacts {
    position: inline-block;
    width: 400px;
    height: 120px;
    border: 3px solid transparent;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Tiny5';
    font-size: 30px;
    z-index: 100;
}
.contacts:hover {
    border: 3px solid  gray;
}
.blurredfortxt2 {
    position: absolute;
    width: 380px;
    height: 100px;
    filter: blur(10px);
    border-radius: 100px;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.055);
}
.secondtxt {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}
.podshw1ps {
    font-size: 24px;
    font-family: 'Tiny5';
    opacity: 1;
    animation: fadeIn2 4s forwards;
    filter: drop-shadow(0 0 20px rgb(255, 255, 255));
}
.exptxt {
    position: absolute;
    top: 300px;
    left: 40px;
    font-size: 30px;
    font-family: 'Tiny5';
}
.timer {
    display: flex;
    justify-content: space-around;
    font-size: 2rem;
    position: absolute;
    font-family: 'Tiny5';
    top: 300px;
    left: 350px;
    }
    #days {
        margin-right: 14px;
    }
    #milliseconds {
    font-size: 1.5rem;
    }








@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn2 {
    from {
        opacity: 0;
        
    }
    to {
        opacity: 1;
        
    }
}

@keyframes animate {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  .cursor {
    height: 30px;
    width: 30px;
    pointer-events: none;
    position: absolute;
    background-color: aliceblue;
    filter: blur(8px);
    border-radius: 50%;
    box-sizing: border-box;
    transition: 0, 1s;
    transform: translate(-50%, -50%);
  }