#tournament-container {
    background-image: url("../images/background.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 500px;
    justify-content: space-around;
    align-items: center;
    margin-top: -150px;
    margin-bottom: -50px;
    color: white;
}

#tournament-name {
    font-size: 4.429rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-align: center;
}

#tournament-details {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-top: -75px;
    width: 80%
}

#separator {
    background-color: white;
    height: 3px;
    width: 60px;
}

#date-container, #participants-container, #winners-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#winner-names-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

#results-bracket-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#final-results-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#bracket-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#final-results, #bracket-text {
    font-size: 2.286rem;
    padding-left: 50px;
}

#bracket-text {
    padding-right: 50px;
}

#bracket {
    margin-left: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#no-bracket-text {
    margin-left: 50px;
}

#placements-table {
    background-color: white;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 90%;
    margin-left: 50px;
}

.placement-1 {
    background-color: #CCAB00;
    color: white;
    font-weight: bold;
}

.placement-1-underline td {
    border-bottom: 2px solid #CCAB00;
}

.placement-2 {
    background-color: #557177;
    color: white;
    font-weight: bold;
}

.placement-2-underline td {
    border-bottom: 2px solid #557177;
}

.placement-3 {
    background-color: #CD7f32;
    color: white;
    font-weight: bold;
}

.placement-3-underline td {
    border-bottom: 2px solid #CD7F32;
}

.placement-alt-a {
    background-color: white;
}

.placement-alt-b {
    background-color: #F5F5F5;
}


#placement-head {
    width: 10%;
}

tr, td {
    height: 40px;
    text-align: center;
}

a {
    text-decoration: none;
    color: black;
    transition: 0.1s ease-in;
}

a:hover {
    text-decoration: underline;
    color:#777;
}