body{
    padding: 0;
    margin: 0;
}

.Page{
    position: relative;
    width: 1080px;
    border: solid 2px black;
    margin: auto;
}

/* botones */
.botones{
    position: relative;
    text-align: center;
}
.btn{
    position: relative;
    padding: 10px 20px;
    border: solid 2px;
    border-radius: 0 10px 0 10px;
    transition: box-shadow 0.5s;
}
.btn:hover{
    box-shadow: 2px 3px 7px 3px black;
}

.btn-primary{
    color: rgb(48, 137, 107);
    border-color: rgb(48, 137, 107);
}

.btn-primary:hover{
    box-shadow: 2px 3px 7px 3px rgb(48, 137, 107);
}
.btn-secundary{
    color: rgb(141, 36, 17);
    border-color: rgb(141, 36, 17);
}

.btn-secundary:hover{
    box-shadow: 2px 3px 7px 3px rgb(141, 36, 17);
}
