body{
    background-image: url(weird.jpg);
    width: 99%;
    height: 100%;
}

#moving-eye{
    position: absolute;
    width: 300px; 
    height: 150px;
    
}

#eye{
    max-width: 100%;
    height: 150px;
    width: 300px;
    display: block;
}

#eye:hover{
    cursor: pointer;
}

.enter {
    width: auto;
    margin-left: 29vw;
    height: auto;
    padding: 0 5% 0 5%;   
    margin-top: 20vh;
    text-align: center;
    background-image: url(backrooms.webp);
    background-size: cover;
    border: none;
    border-radius: 40% 10% 40% 10%;
}

.enter:hover{
    cursor: pointer;
    display: none;
}

.link-index1 {
    font-size: 4vw;
    font-style: italic;
    font-weight: bold;
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    25% {
        transform: translate(2px, -2px);
    }
    50% {
        transform: translate(-2px, 2px);
    }
    75% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}
