* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
    background: #00ff00;
    font-family: Impact, Arial Black, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(
            35deg,
            #ff00ff 0 25px,
            #ffff00 25px 50px,
            #00ffff 50px 75px
        );
    opacity: .8;
    animation: chaos .3s infinite;
}

main {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: clamp(70px, 14vw, 160px);
    margin: 0;
    transform: rotate(-8deg);
    text-shadow: 10px 10px #fff, 15px 15px #000;
    animation: spin 3s infinite;
}

.hero {
    width: min(65vw, 600px);
    height: 45vh;
    object-fit: contain;
    animation: jump 1s infinite;
    filter: contrast(1.5);
}

.buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons a {
    padding: 18px 35px;
    background: white;
    border: 6px solid black;
    color: black;
    text-decoration: none;
    cursor: pointer;
    animation: move 1.5s infinite;
}

.buttons a:nth-child(1){transform:rotate(-10deg)}
.buttons a:nth-child(2){transform:rotate(7deg)}
.buttons a:nth-child(3){transform:rotate(-14deg)}
.buttons a:nth-child(4){transform:rotate(12deg)}

@keyframes move {
    50% {
        translate: 30px -25px;
        rotate: 25deg;
    }
}

@keyframes jump {
    50% {
        translate: 0 -20px;
        rotate: 3deg;
    }
}

@keyframes spin {
    50% {
        rotate: 10deg;
    }
}

@keyframes chaos {
    50% {
        transform: translate(10px, -10px);
    }
}
