body {
    margin: 0;
    background: linear-gradient(0deg, #6c5021 0, #ab8f57 100%);
    padding: 3px;
}

div#wrapper {
    display: flex;
    background: rgb(1, 10, 19);
}

div#left-side, div#right-side {
    width: 50%;
    height: 100%;
}

.champion-splash {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

div#middle {
    background: linear-gradient(0deg, #6c5021 0, #ab8f57 100%);
    padding: 3px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

div#versus {
    background: rgb(1, 10, 19);
    color: #ab8f57;
    border-radius: 50%;
    font-size: 75px;
}

div#toptextouter {
    width: 100%;
    position: relative;
    z-index: 102;
}

div#toptext {
    position: absolute;
    width: auto;
    background: linear-gradient(0deg, #6c5021 0, #ab8f57 100%);
    text-align: center;
    padding: 0px 3px 3px 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

div#text {
    background: rgb(1, 10, 19);
    color: #ab8f57;
    padding: 10px 30px;
    font-size: 21px;
}

div#right_outer, div#wrong_outer {
    position: absolute;
    width: 300px;
    height: 75px;
    text-align: center;
    line-height: 75px;
    font-size: 25px;
    padding: 3px;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    transform: scale(0);
    transition: all .3s ease-in-out;
}

div#right_outer.show, div#wrong_outer.show {
    transform: scale(1);
}

div#right_outer {
    background: #27ae60;
}

div#wrong_outer {
    background: #c0392b;
}

div#right-text {
    color: #27ae60;
}

div#wrong-text {
    color: #c0392b;
}

div#right-text, div#wrong-text {
    background: rgb(1, 10, 19);
}

div#right_outer, div#wrong_outer {
    z-index: 102;
}

.champion-name {
    position: absolute;
    color: #ab8f57;
    width: 50%;
    line-height: calc(100vh - 6px);
    text-align: center;
    opacity: 0.7;
    font-size: 100px;
    z-index: 100;
    cursor: pointer;
    top: 0;
}

.overlay {
    background: rgb(1, 10, 19);
    width: calc(50% - 3px);
    height: calc(100% - 60px);
    position: absolute;
    opacity: 0.5;
    top: 3px;
}

div#bottom-bar {
    position: absolute;
    bottom: 3px;
    width: calc(100% - 6px);
    left: 3px;
    display: flex;
    height: 60px;
    border-top: 3px solid #6c5021;
}

div#best-streak, div#current-streak, div#timer {
    flex: 1 1 33.3333%;
    text-align: center;
    color: #ab8f57;
    line-height: 60px;
    font-size: 23px;
    border-right: 3px solid #6c5021;
}

div#best-streak {
    border: none;
}
