*{
    
    box-sizing: border-box;
   
    padding: 0;
    margin: 0;
}
.posicion{
    display: block;
    text-align: left;
    margin: 0 20px;
}
h1{
    color: blue;
}
.centro{
    text-align: center;
}
.color{ 
    color: darkgreen;
}
.puntos{
    margin-left: 35px;
}
.volver{
    display: flex;
    justify-content: center;
    text-align: center;
}
button{
    justify-content: space-between;
    align-items: center ;
    border-radius: 35px;
    box-shadow: 3px 2px 2px 0.8px rgb(44, 44, 46);
    background-color: #1AC708;
    border: 10px;
    padding: 30px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    margin: 4px 2px;
    cursor: pointer;
    transition: all .3s ease;
}
button:hover{
    background-color: rgb(128, 5, 5);
    color: #1AC708;
    padding-right: 15px;
}