body {
    background-image: url(../img/imagenFondo2.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: white;
}

/*Menu*/
.containerMenu{
    width: 100%;
    height: 50px;
    background: black;
}
.menu{
    list-style: none;
    padding: 0;
    background: #000;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
}
.menu li a{
    margin-left: 85px;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    display: flex;
}
.menu li{
    display: flex;
    text-align: center;
}
.menu li a:hover{
    background: #004EC6;
}

/*Contenido*/

#registerTitle{
    display: flex;
    align-items: center;
    justify-content: center;

}

#registerButton{
    display: flex;
    align-items: center;
    justify-content: center;

}

#Registro{
    background-color: rgba(62, 41, 83, 0.5);
    margin-top: 50px;
    width: 450px;
    padding: 10px 30px;
    border-radius: 5px;
}

#bottom{
    text-align: center;
    color: black;
    background-color: rgb(196, 196, 196);
    border-style: solid;
    border-width: 1px;
    border-color: white;
    border-radius: 5px;
    width: 96%;
    margin-top: 80px;
    margin-bottom: 10px;
}