body {
    background: #0c0c0c url(xpattern.png);
    background-size: 1080px;
    color: #a580fa;
    animation: moveIt 100s linear infinite;
    margin: 0;
    overflow-x: hidden;
}



.varilogo {
    margin: auto;
    width: 800px;
    display: block;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    border: 0px solid white;
    opacity: 1;
    
    animation: MoveUpDown 5s linear infinite; 
    
    
}

.varishadow {
    margin: auto;
    width: 800px;
    display: block;
}



.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 80%;
    margin: auto;
    
}

.button1 {
    background-color: #fcd384;
    color:#28232b;
    border: 10px solid #a580fa;
    transition-duration: 0.25s;
    font-family: "Cherry Bomb One", system-ui;
}

.button2 {
    background-color: #fcd384;
    color:#28232b;
    border: 10px solid #a580fa;
    transition-duration: 0.25s;
    font-family: "Cherry Bomb One", system-ui;
}

.button3 {
    background-color: #fcd384;
    color:#28232b;
    border: 10px solid #a580fa;
    transition-duration: 0.25s;
    font-family: "Cherry Bomb One", system-ui;
}

.button1:hover {
    color: #fcd384;
    background-color: #28232b;
    border: 15px solid #a580fa;

}

.button2:hover {
    color: #fcd384;
    background-color: #28232b;
    border: 15px solid #a580fa;
}

.button3:hover {
    color: #fcd384;
    background-color: #28232b;
    border: 15px solid #a580fa;
}

.container button {
    width: px;
    border-radius: 48%;
    padding: 20px 20px;
    text-align: center;
    display: flex;
    font-size: 25px;
    cursor: pointer;
    margin: 10px;
    
}



a:link{
    text-decoration: none;
}





.maintext {
    margin: auto;
    justify-content: center;
    max-width: fit-content;
}

@keyframes moveIt {
    from {
        background-position: bottom left;
    }
    to {
        background-position: top right;
    }
}

@keyframes MoveUpDown {
    0%, 100% {
        bottom:70px;
    }
    50% {
        bottom: 100px;
    }
}





