.imagesCarousel {
    width: 70%;
    margin: auto;
}

.carousel-item img {
    height: 600px;
}

.home {
    background:linear-gradient(red, gold);
}
.teams{
    background-color:lightblue;
}
.standings{
    background-color:palegreen;
}
.rules{
    background-color: bisque;
}

.scoring {
    margin: auto;
}

.overallStandings td {
    font-size: 30px;
}

.overallStandings th {
    font-size: 30px;
}

.driverStandings td {
    font-size: 15px;
}

.driverStandings th {
    font-size: 15px;
}

.races td {
    font-size: 15px;
}
.races th {
    font-size: 15px;
}

.rulesTitle {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.overallStandings {
    width: 90%;
    margin: auto;
}

.driverStandings {
    width: 70%;
    margin: auto;
}

.races {
    width: 70%;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .imagesCarousel {
        width: 100%;
        
    }
    .carousel-item img {
        height: 300px;
    }

}

@media only screen and (max-width: 480px) {
    .imagesCarousel {
        width: 100%;
        
    }
    .carousel-item img {
        height: 250px;
    }

    td, th{
        font-size: 15px;
    }
}