@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Science+Gothic:wght@100..900&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Google Sans Flex", sans-serif;
}

/* Hero */
.hero {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("../img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
}

.hero-section {
    padding: 10px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-section p {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.8px;
    font-style: italic;
}

.hero-section h2 {
    margin: 10px 0;
    font-family: "Science Gothic", sans-serif;
    font-size: 40px;
    letter-spacing: 3px;
}

.hero-section .button {
    margin-top: 20px;
    box-shadow: 0 0 10px #242424;
    border: transparent;
    border-radius: 4px;
    padding: 7px 27px;
    background-color: #ca4413;
    color: white;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.hero-section .button:hover {
    background-color: #992d06;
}
/* End Hero */


/* Main */
.main {
    width: 100%;
    min-height: 100vh;
}

.main-section-filter .filter-btn.active {
    border-color: #0d6efd;
    background-color: #0d6efd;
    color: white !important;
}


.main-section {
    padding: 96px 10px;
}

.main-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.main-section-header h2 {
    margin-bottom: 6px;
    font-family: "Science Gothic", sans-serif;
    font-size: 34px;
    letter-spacing: 3px;
}

.main-section-header p {
    font-style: italic;
}
/* End Main */


/* Custom Datatable */
#race-result_length,
#race-result_info {
    padding-bottom: 14px;
}

#race-result_wrapper .row {
    margin-top: 10px;
}
/* End Custom Datatable */
