#introVideo {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

#backgroundVideo {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
  
.content {
    position: relative;
    margin: 0px auto;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    width: 90%;
    padding: 20px;
    border-radius: 10px;
}

table {
    width: 100%;
}

table, th, td {
    border-collapse: collapse;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 3px;
    vertical-align: middle;
    text-align: center;
    font-family: Calibri;
    font-size: 17px;
    font-weight: bold;
}

thead, th {
    color: #fff;
    background-color: #333;
    font-size: 22px;
}

.alignLeft {
    text-align: left;
}

.best {
    font-size: 13px; 
    color: red; 
    border: 1px solid red; 
    border-radius: 5px; 
    padding: 2px; 
    font-weight: normal;
    animation: blinkingText 3.0s linear infinite;
}
@keyframes blinkingText{
    50% { opacity: 0; }
}

#eventUpdate {
    font-family: Calibri;
    font-size: 18px;
}

.goldTxt {
    font-weight: bold; 
    border-radius: 50%; 
    letter-spacing: 6px;
    padding-left: 7px;
    color: #000;
    background-color: #AF9500;
}

.silverTxt {
    font-weight: bold; 
    border-radius: 50%; 
    letter-spacing: 7px;
    padding-left: 7px;
    color: #000;
    background-color: #B4B4B4;
}

.bronzeTxt {
    font-weight: bold; 
    border-radius: 50%; 
    letter-spacing: 7px;
    padding-left: 7px;
    color: #000;
    background-color: #6A3805;
}