/* SCHEDULE TODAY */

.schedule-today {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: solid red 1px; */
    /* margin-top: 150px; */
   

    background: linear-gradient( rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35) ), url('blk-texture.webp'); /* The image used */
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 500px; /* You must set a specified height */
   
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */



    
}
.schedule-today .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     margin: 0px 10px;

}
.schedule-today h1, .schedule-today p {
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
}

.schedule-today h1, .schedule-today p, .schedule-today button {
    margin-top: 20px;
}

.schedule-today h1 {
    font-size: 3rem;
    line-height: 1.2;

    
}

.schedule-today p {
    font-size: 1.5rem;
    line-height: 1.6;

}

.schedule-today-button {
    
        background-color: black;
        color: white;
        font-weight: 700;
        font-family: 'Source Sans Pro', sans-serif;
       
        font-size: 1rem;
       
        line-height: 1.6;
        padding: 0.625rem 1rem;
        border-radius: 1.25rem;
        
        border: none;
    outline:none;
    cursor: pointer;
     
    
}

.schedule-today button:hover, .schedule-today button:active  {
    background-color: white;
    color: black;
}

/* .schedule-today, .schedule-today-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.schedule-today {
    border: red solid 1px
}
.schedule-today-content {
    border: green solid 1px
}
.schedule-today-content * {
    margin: 20px 100px ;
    text-align: center;
 
    
}
.schedule-today-content h1 {
    font-size: 3.6rem;
    line-height: 1.2;

    
}

.schedule-today-content p {
    font-size: 1.4rem;
    line-height: 1.6;

} */

@media(max-width: 500px) {
    .schedule-today {
        height: 700px;
        padding-bottom: 20px;
    }
 
}