:root{
    --red: #E6002B;
    --gray: #222;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --purple: #E829F1;
}

*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body{
    background-color: white;
}

body::-webkit-scrollbar {
    display: none;
  }

/* NAV */

nav{
    background-color: var(--red);
    overflow: hidden;
}

nav ul{
    list-style-type: none;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li a{
    color: white;
    font-size: 20px;
    text-decoration: none;
    padding: 20px;
    float: left;
    font-weight: bold;
    animation: Load 1s;
}

nav ul li a:first-child{
    padding-left: 0;
}

/* HEADER */

.inner-box{
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

#header{
    height: 300px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0% 100%;
    background-color: var(--gray);
    animation: LoadImg 1s;
}

h1{
    /*font-family: 'Racing Sans One', cursive;*/
    color: white;
    text-align: center;
    font-size: 100px;
    line-height: 100px;
    padding-top: 100px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px var(--gray);
    animation: Load 1s;
}

/* ACTIVE TABLE */

.active{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.active th, .active td{
    padding: 10px;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    border: 1px solid black;
    font-weight: bold;
}

/*.active th{
    writing-mode: vertical-rl;
    text-orientation: upright;
}*/

.active td.fastest{
    background-color: var(--purple);
    color: white;
}

/* SECTIONS */

.red{
    background-color: var(--red);
}

.inner-box{
    padding: 20px 0;
}

h2{
    font-size: 40px;
    animation: Load 1s;
}

.red h2{
    color: white;
}

.podium{
    display: flex;
    margin-top: 20px;
    text-align: center;
}

.box{
    width: 33.333%;
}

.top{
    padding: 10px;
}

.bottom{
    background-color: white;
    padding: 10px;
}

.name{
    font-size: 30px;
    font-weight: bold;
    color: white;
    line-height: 30px;
}

.place{
    font-size: 30px;
    font-weight: bold;
    color: black;
    line-height: 30px;
    color: var(--gray);
}

.first{}

.second{
    padding-top: 30px;
}

.third{
    padding-top: 50px;
}

.first .bottom{
    height: 100px;
    background-color: var(--gold);
}

.second .bottom{
    height: 70px;
    background-color: var(--silver);
}

.third .bottom{
    background-color: var(--bronze);
}

table{
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    text-align: center;
}

table td{
    border-top: 2px solid #777;
    padding: 10px;
    font-size: 20px;
    width: 33.3333%;
}

/* FOOTER */

footer{
    background-color: var(--gray);
    padding: 10px;
}

footer p{
    text-align: center;
    color: white;
    letter-spacing: 2px;
    font-size: 20px;
}

/* RESPONSIVE */

@media screen and (max-width: 1500px) {
    nav ul li a:first-child{
      padding-left: 20px;
      animation: LoadResp 1s;
    }
    #header{
        height: 400px;
        background-position: 50% 100%;
        animation: LoadImg2 1s;
    }
    h1{
        font-size: 60px;
    }
    h2{
        padding-left: 20px;
        animation: LoadResp 1s;
    }
}