body {
    font-family: 'Courier New', monospace;
    background-color: #1a1a1a;
    color: #00ff00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    body {
        padding-top: 0px;
    }
}

h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    text-shadow: 2px 2px #ff00ff;
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.speaker-icon {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.gif-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
}

.gif-container img {
    width: 100%;
    height: auto;
}

.cta {
    background-color: #00ff00;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    font-size: clamp(1rem, 3vw, 1.2rem);
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0;
}

.cta:hover {
    background-color: #ff00ff;
    color: #00ff00;
}
