@supports(object-fit: cover) {
    picture {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;

    }
}
body{
    background-color: white;
}
div{
    float: left;
    padding: 30px;
}

#azul{
    position: absolute;
    top: 25%;
    left: 10%;

}

#rojos{
    position: absolute;
    top: 25%;
    right: 10%;
}

#BotonesRojo input{
    border-radius: 12px;
    border: solid black;
    background-color: red;
}

#BotonesAzul input{
    border-radius: 12px;
    border: solid black;
    background-color: blue;
}

#BotonesRojo{
    position: absolute;
    top: 55%;
    left: 18%;
}

#BotonesAzul{
    position: absolute;
    top: 55%;
    right: 18%;
}

button{
    display: none;
}

img{
   height: 100px;
   width: 80px;
}