body{
    font-family: "Verdana", sans-serif;
    background-color: #1e1e1e;
    color: #fff;
    overflow-y: hidden;
}

#section_left{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 28%;
    height: 601px;
    background-color: #0ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    padding: 20px;
    box-shadow: inset 0 0 100px #00c6c6;
}
#ball_button{
    background-color: #fdf5e6;
    border: 2px solid #444;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s;
    z-index: 1;
}
#ball_button:hover {
    background-color: #fff;
    transform: scale(1.05);
}
#comptador{
    justify-self: center;
}
#comptador_sec{
    justify-self: center;
}
#container{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 43%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    filter: opacity(0.2);
    z-index: 0;
}

#separator_left{
    background: url(../fotos/panelGradientTop.png) no-repeat top left, url(../fotos/panelGradientBottom.png) no-repeat bottom left, url(../fotos/panelVertical.png) repeat-y;
    position: absolute;
    top: 0px;
    left: 28%;
    width: 16px;
    height: 100%;
}

#section_middle{
    position: absolute;
    left: 29%;
    top: 0px;
    width: 34%;
    height: 601px;
    background-color: #4682f4;
    box-shadow: inset 0 0 100px #3366cc;
    padding: 20px;
}
#middle_up{
    text-align: center;
    height: 20%;
}
#description{
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
    text-align: center;
}
.show{
    height: 10%;
    width: 97%;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 2px solid;
    display: none;
    overflow-y: hidden;
}

#separator_right{
    background: url(../fotos/panelGradientTop.png) no-repeat top left, url(../fotos/panelGradientBottom.png) no-repeat bottom left, url(../fotos/panelVertical.png) repeat-y;
    position: absolute;
    top: 0px;
    width: 16px;
    right: 34%;
    height: 100%;
}

#section_right{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 34%;
    height: 100%;
    text-align: center;
    background-color: #eee;
    color: #000;
    box-shadow: inset 0 0 100px #bbb;
}
.button{
    background-color: #fff;
    color: #000;
    border: 1px solid #888;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #aaa;
    transition: background-color 0.2s, transform 0.1s;
}
.button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}
#upgrades{
    margin-top: 20px;
    width: 90%;
    height: 45%;
    margin-left: 5%;
    overflow-y: auto;
}
#upgrades button{
    background-color: #fff;
    color: #000;
    border: 1px solid #888;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #aaa;
    transition: background-color 0.2s, transform 0.1s;
}
#upgrades button:hover{
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.ball-in{
    border-radius: 50%;
    position: relative;
}