@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    max-width: 800px;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    transition: transform 0.2s ease-in-out, color 0.3s ease;
}

.word {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.1s ease-in-out, color 0.3s ease;
}

/* Shake effect on hover */
.word:hover {
    animation: shake 0.2s infinite alternate;
    color: #ff4d4d;
}

@keyframes shake {
    0% { transform: rotate(-5deg) translateX(-2px); }
    100% { transform: rotate(5deg) translateX(2px); }
}

.author {
    font-size: 1.5rem;
    margin-top: 20px;
    opacity: 0.8;
}