@font-face {
    font-family: 'Papyrus';
    src: url("../fonts/papyrus.ttf");
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /* Clean white background */
    font-family: sans-serif;
    overflow: hidden;
}

#click-me-btn {
    font-size: 2rem;
    padding: 15px 30px;
    cursor: pointer;
    border: 2px solid #000;
    background-color: #f0f0f0;
    border-radius: 8px;
    transition: background-color 0.2s;
}

#click-me-btn:hover {
    background-color: #ddd;
}

#content-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hidden {
    display: none !important;
}

#random-gif {
    max-width: 90%;
    max-height: 70vh;
}

#footer-text {
    position: absolute;
    bottom: 30px;
    font-family: 'Papyrus', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    animation: stupidSquash 2s ease-in-out infinite alternate;
    white-space: nowrap;
    transform-origin: bottom center;
}

@keyframes stupidSquash {
    0% { transform: scale(1, 1); letter-spacing: 0px; color: black; }
    25% { transform: scale(2.5, 0.2) skewX(30deg); letter-spacing: 20px; color: red; text-shadow: 5px 5px 0 yellow; }
    50% { transform: scale(0.4, 4) skewX(-30deg); letter-spacing: -10px; color: blue; text-shadow: -5px -5px 0 lime; }
    75% { transform: scale(1.5, 0.8) skewX(15deg); letter-spacing: 10px; color: fuchsia; text-shadow: 0px 5px 0 cyan; }
    100% { transform: scale(0.8, 1.5) skewX(-15deg); letter-spacing: 0px; color: orange; text-shadow: 5px -5px 0 black; }
}