html,
body {
    height: 100%;
}

body {
    background: #0d0d0d;
    color: #fff;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    margin: 0 0 8px;
    word-break: break-word;
}

h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: normal;
    opacity: 0.85;
    word-break: break-word;
}

.gif-container {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.gif-container img {
    display: block;
    max-width: 90%;
    max-height: 25vh;
    height: auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    .gif-container {
        bottom: 8px;
    }

    .gif-container img {
        max-width: 85%;
        max-height: 20vh;
    }
}
