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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-container {
    text-align: center;
}

.logo {
    width: 300px;
    margin-bottom: 2rem;
    animation: breathe 2s ease-in-out infinite;
}

.countdown-text {
    color: #4964a8;
}

@keyframes breathe {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.90);
        opacity: 0.5;
    }
}
