.schedule {
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.schedule .schedule-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #640b19;
    height: 50px;
    border-radius: 15px;
    animation: zoom 1.0s infinite alternate;
    max-width: 90vw;
}

.schedule .schedule-button .whatsapp-container {
    display: flex;
    width: 30%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.schedule .schedule-button .whatsapp-container img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.schedule .schedule-button .text-container {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    width: 300px;
    height: 100%;
}

.schedule .schedule-button .text-container p {
    font-family: 'aller-bd', -apple-system, system-ui;
    color: #FAF6F4;
    font-size: 20px;
}


.schedule .schedule-button:active {
    background-color: #640b19;
}

@media only screen and (orientation: landscape) {
    .schedule {
        /* min-width: 1000px; */
    }
}