@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;
    flex-direction: column;
}

.container {
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    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); }
}

h2 {
    font-size: 2.5rem;
    margin-top: 30px;
}

p {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

button {
    background-color: #ff4d4d;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 25px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

button:hover {
    background-color: #ff1a1a;
}

button:active {
    transform: scale(1.1);
    animation: shake 0.3s ease-in-out;
}

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