* {
    box-sizing: border-box;
}
html {
    background-image: url('assets/biscuit.png');
    background-attachment: fixed;
    display: block;
    text-align: center;
    font-family: MS UI Gothic;
    color: white;
}
body {
    margin: 0;
    padding: 0;
    text-align: center;
}
P {
    animation: wiggly 2s linear infinite;
    text-shadow: 2px 2px rgb(225, 0, 255);
    background-color: lime;
    border: red 2px solid;
    
}
audio {
    animation: wiggly 2s linear infinite;
}
#main {
    margin: auto;
    margin-top: 20%;
    display: block;
    width: 20%;
}
.scroll {
    animation: diag 2s linear infinite;
}

 /* i wrote myself cuz wanted to recreate from vitya
 hiii vitya love youuu */
@keyframes wiggly {
    0% { transform: rotateX(25deg);}
    25% { transform: rotateY(25deg);}
    50% { transform: rotateX(-25deg);}
    75% { transform: rotateY(-25deg);}
    100% { transform: rotateX(25deg);}
}
@keyframes diag {
    from {
        background-position-x: 0px;
        background-position-y: 0px;
    }
    to {
        background-position-x: 110px;
        background-position-y: 172px;
    }
}