body{
    background-color: black;
    padding: 0px;
    margin: 0px;
    font-family: "Do Hyeon";
}
header{
    height: 500px;
    width: 800px;
    padding-top: 10px;
    position: relative;
    background-color: #87ceeb;
    margin: auto;
}
input[type="range"]{
    width: 90%;
    padding: 2% 5% 15% 5%;
    position: absolute;
    bottom: 0;
    margin: 0;
    -webkit-appearance: none;
    outline: none;
    background-color: #efdd6f ;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    background-color: #dfcd5f;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    z-index: 2;
}
h1,h2{
    display: block;
    text-align: center;
    top: 0;
    color: #69b0cd;
    user-select: none;
}
h1{
    margin-bottom: 0;
}
h2{
    margin-top: 0;
}
#our-stand, #their-stand{
    z-index: 3;
}
#our-stand, #their-stand, #third-stand{
    position: absolute;
    height: 100px;
    left: 49.9%;
    bottom: 110px;
    width: 2px;
    margin-bottom: 20px;
    background-color: black;
}
#our-stand span, #their-stand span, #third-stand span{
    width: 50px;
    display: block;
    padding: 3px;
    color: white;
    user-select: none;
}
.ball{
    height: 10px;
    width: 3px;
    background-color: blue;
    position: absolute;
    bottom: 125px;
    z-index: 1;
    user-select: none;
    transition: 200ms;
}
.red, #our-stand span{
    background-color: #dd4444;
}
.green, #their-stand span{
    background-color: #44dd44;
}
.blue, #third-stand span{
    background-color: #4444dd;
}
.tie{
    background-color: #d1bf51;
}
em{
    position: absolute;
    padding-left: 10px;
}
i{
    display: inline-block;
    border: 2px solid #69b0cd;
    padding: 5px;
    height: 20px;
    width: 20px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    margin-right: 5px;
    border-radius: 20px;
    color: #69b0cd;
    user-select: none;
    transition: 200ms;
}
i:not(.selected):hover{
    color: white;
    border-color: white;
}
.selected{
    background-color: white;
    border-color: #87ceeb;
    color: #87ceeb;
}