#schedule-exam-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    height: 250px;
}

#schedule-exam-section button {
    height: 100px;
    width: 450px;
    border-radius: 50px;
    font-size: 30px;
    color: white;
}

#schedule-exam-section button svg {
    width: 35px;
    height: 35px;
    margin-left: 13px;
}


/* ========== MEDIA QUERIES ========== */

@media (max-width: 700px) {

    #schedule-exam-section {
        padding-left: 0;
        padding-right: 0;
    }

    #schedule-exam-section > div:nth-child(2) > div {
        width: 100vw;
        justify-content: center;
    }

    #schedule-exam-section > div:nth-child(2) > div button {
    margin-left: 0;
    }

}

@media (max-width: 450px) {
    #schedule-exam-section button {
        height: 80px;
        width: 300px;
        font-size: 23px;
    }
    #schedule-exam-section button svg {
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }
}

