@keyframes blink_box {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.blinking_box {
    animation: blink_box 2s infinite;
}

.box-container {
    margin-top: 30px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
}

.text-container p {
    margin-top: 1em;
    font-size: 1em;
    color: #333;
}