/*CONFIGURE BACKGROUND AND PAGE LAYOUT */



/*CONFIGURE COLORS AND FONTS*/

/* EVENT TITLE */
span#event-title {
    color: white;
font-weight: 900;
}

/*RACE NUMBER FONT */
.race-number {
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-transform: uppercase;
    font-size: 65px;
    margin: 10px 0;
    font-family: "Alfa Slab One", serif;
    font-weight: 700;
}


/*CONFIGURE RACE NUMBER ANIMATED BACKGROUND*/
.race-number {
  background-image: url(images/prospec.gif);
}

/* UP-NEXT & RESULTS TEXT COLORS */
.up-next {
    color: red;
    font-family: 'Bebas Neue';
    font-weight: 700;
    font-size: 46px;
}
.next {
animation-delay: 1s!important;
opacity: 0;
animation-fill-mode: forwards;

}

/* PILOT CARD */

.pilot-info{
/* Activate or disactivate with display:none */
}

.container-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.pilot-card {
    position: relative;
    width: 300px;
    height: 470px;
    background: linear-gradient(to bottom, rgb(24 26 70 / 70%), rgba(0, 0, 0, 0.7));
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease;
    animation: fadeInFromTop 1s ease-in-out 1s forwards;
opacity: 0; /* Initially hidden */
animation-delay: 1s;
}

/* CHANGE SINGLE PILOT BACKGROUND COLORS IN PILOT CARDS */
div#pilot1 {
 }
div#pilot2 {
}
div#pilot3 {
}
div#pilot4 {
}
div#pilot5 {
}
div#pilot6 {
}

/* QUALIFYING */
.container {
    display: flex;
    width: 70%;
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgb(243 14 209 / 30%);
    background-color: transparent;
}
.race-ranking-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    background-color: transparent;
}
.race-ranking-table th {
    background-color: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 1.2em;
    text-transform: uppercase;
}
/*  text of rank numbers */
.rank-table {
    color: #00ff00;
    font-weight: bold;
    width: 10%;
}

/* Fixed */
.title {
    text-align: center;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    line-height:1;
}
