* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.gm-text {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        3px 3px 0px #ff6b6b,
        6px 6px 0px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .gm-text {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .gm-text {
        font-size: 2rem;
    }
}