/* Rankings CSS */
#rankings {
    display: inline-block;
    flex-direction: column;
    margin-bottom: 4em;
}

.rank {
    padding-bottom: 0.5em;   
}

.rank > * {
    display: inline-block;
}

.pos {
    width: 5em;
}

#gen {
    margin-top: 0.5em;
}



/* Bracket CSS */
#tournament {
    display: flex;
    align-items: center;
    margin-bottom: 5em;;
}
.rounds {
    width: 30%;
}

.matches {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match {
    padding:5px;
    border: 3px solid black;
}

/* Winner CSS */
#finaltext {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 64px;
    display: flex;
}

#preamble, #winner {
    display: inline-block;
}

#preamble {
    margin-right: 0.5em;
}

#winner {
    text-transform: uppercase;
}

#shadowBox {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.2);
    /* Black w/opacity/see-through */
    border: 3px solid;
}

.rainbow {
    letter-spacing: 5px;
}
.rainbow_text_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}