@import url('https://fonts.googleapis.com/css?family=Asap:400,500,700&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;

}

body{
    background-color: black;
}
header{
    background-color: white;
}

body{
    /*background-color: black;*/
}

header{
    background-color: white;
    padding: 20px;

}
header > h1{
    color: black;
    text-align: center;
    font-family: Asap, sans-serif;
}

.marcador{
    background-color: black;
    border: 3px solid white; 
    width: 200px;
    text-align: center;
    margin: 20px auto;
    border-radius: 5px;
    padding: 15px 20px;
    font-family: Asap, sans sans-serif;
    position: relative;
}


.user{
    background-color: red;
    color: white;
    font-size: 14px;
    padding: 2px 15px;
    font-family: Asap, sans-serif;
}
.comp{
    background-color: red;
    color: white;
    font-size: 14px;
    padding: 2px 15px;
    font-family: Asap, sans-serif;
}
#user-label{
    position: absolute;
    top: 20px;
    left: -30px;

}
#comp-label{
    position: absolute;
    top: 20px;
    right: -30px;
}


.user-marcador{
    color: white;
    font-size: 35px;
}

.comp-marcador{
    color: white;
    font-size: 35px;

}

.puntos-marcador{
    color: white;
    font-size: 35px;
}
.resultado{
    color: white;
    font-size: 30px;

}

.resultado > p{
    text-align: center;
    font-family: Asap, sans-serif;
    font-weight: bold;
}


.imagenes{
    position: relative;
    text-align: center;
    padding-top: 25px;
    margin-top: 50px;
}


.eleccion{
    border: 4px solid white;
    display: inline-block;
    border-radius: 50%;
    margin: 0 20px;
    padding: 10px;
    transition: all 0.3s ease;
}

.eleccion:hover{
    background: grey; 
    cursor: pointer;
}


.move{
    color: white;
    font-size: 20px;
    font-family: Asap, sans-serif;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.circulo-verde{
    border: 4px solid green;
    box-shadow: 0 0 10px #31b43a;
}

.circulo-rojo{
    border: 4px solid red;
    box-shadow: 0 0 10px #d01115;
}
.circulo-gris{
    border: 4px solid grey;
    box-shadow: 0 0 10px #29252b;
}
