body{
    color: black;
    background-color:rgb(190, 186, 186);
}
h2 {
    font-family: 'Raleway', sans-serif;
    border: solid white;
    color: #CE0C2E;
    text-align: center;
    font-size: 35px;
    width: fit-content;
    margin: auto;
    padding: 5px 80px;   
}
h3 {
    font-size: 48px;
    text-align: center;
    color: #CE0C2E;
    font-family: 'Permanent Marker', sans-serif;
    letter-spacing: 5px;
    margin: 30px 0 0 0;
    padding: 0;
    background: radial-gradient(rgba(228, 225, 225, 0.637) 20px, rgb(190, 186, 186) 50%);
    text-shadow: 0 0 10px rgba(0, 0, 0, .9);
    
}

.schedule {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
    max-width: 1500px;
    align-items: flex-start; 
    background-color: rgb(228, 225, 225);
    border-radius: 10px;
    background: radial-gradient(rgb(228, 225, 225) 25%, rgb(190, 186, 186) 75%); 
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    min-width: 250px;
    width: 1200px; 
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 1.15);
    overflow: hidden;
}


.styled-table thead tr {
    background-color: #CE0C2E;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600; 
    letter-spacing: 2px;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;  
}

.styled-table tbody tr { 
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:nth-of-type(odd) {
    background-color: #d8d4d4;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #CE0C2E;
}

tbody td:nth-of-type(3) {
    display:flex;
    
    justify-content: flex-start;
    align-items: center;
}

td img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

h4 {
    text-align:center;
}

.home {
    color: #CE0C2E;
    font-weight: 900;
}


@media (max-width:431px) {
    body {
        min-width: 100%;
    }
    
    .socialContainer button {
        visibility: hidden;
    }
    
    .styled-table {
        width: min-content;
        min-width: 340px;
    }

    .styled-table th,
    .styled-table td{
       padding: 7px 10px;
       font-size: .8em;
    }

    h2 {
        margin-top: 20px;
        font-size: 30px;
        padding: 5px;
        max-width: 100%;
    }
    
    .schedule{
        min-width: 340px;
    }

    td img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width:350px) {
    body{
        min-width: 100%;
    }

    .styled-table {
        width: 270px;
    }

    .styled-table th,
    .styled-table td{
       padding: 7px 10px;
       font-size: .8em;
    }

    h2 {
        margin-top: 20px;
        font-size: 22px;
        padding: 5px;
    }

    .schedule{
        min-width: 260px;
    }

    td img {
        width: 25px;
        height: 25px;
    }
}