body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;   /* по горизонтали по центру */
    align-items: flex-start;   /* по вертикали к верху */
}

.box {
    text-align: center;
    max-width: 320px;
    padding: 60px 20px 40px;   /* отступ сверху, чтобы не прилипало к самому краю */
}

.text {
    font-size: 18px;
    color: #444;
}

/* Кнопка */
#continueBtn {
    margin-top: 26px;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    background: #ff4b5c;
    color: #ffffff;
    border-radius: 999px;
    cursor: pointer;
    outline: none;
    transform: scale(1);
}

/* Пульсация кнопки */
#continueBtn.pulse {
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 75, 92, 0.5);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 14px rgba(255, 75, 92, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 75, 92, 0);
    }
}
