@font-face {
    font-family: 'Poppins';
    src: url('/Poppins-SemiBold.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #08605F 50%, #45B69C);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 700px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    animation: pulse 3s infinite;
}

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

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-3deg);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.emoji {
    font-size: 2.5rem;
    margin-top: 1rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.debug-msg {
    font-size: 0.9rem;
    margin-top: 2rem;
    opacity: 0.5;
    font-style: italic;
}

@media only screen and (max-width: 600px) {

    .overlay {
        background-color: transparent;
        animation: none;
    }
}