/* ALL */
*{
    margin: 0;
    padding: 0;
}

/* BODY */
body{
    background: linear-gradient(to top, rgba(177, 142, 55) 0%, rgba(33, 37, 41, 0.3) 100%);
    background-color: black;
    font-family: 'Lora', serif;
}

/* NAVBAR */
#navbar{
    background-color: rgb(177, 142, 55);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, .4);
}

#logo {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 7%;
    border-radius: 50%;
    box-shadow: 0px 4px 8px 0px rgb(0, 0, 0);
    z-index: 2;
}

.nav-link{
    margin-right: 2em;
    margin-left: 1em;
    transition: .2s in-ease;
}

.nav-link:hover{
    background-color: rgba(165, 112, 60, 0.5);
    border-radius: 20px;
    color: black;
}

.btnSesion{
    padding: 5px;
    padding-left: 1em;
    padding-right: 1em;
    position: absolute;
    margin-top: 3px;
    margin-left: 2.5em;
    background-color: rgb(33, 37, 41);
    text-decoration: none;
    color: rgb(177, 142, 55);
    border-radius: 20px;
    z-index: 1;
    transition: .2s ease;
}

.btnSesion:hover{
    transform: scale(1.1);
}

#pageActual{
    padding: 5px;
    padding-left: 1em;
    padding-right: 1em;
    margin-top: 3px;
    margin-left: 2.5em;
    background-color: rgb(33, 37, 41);
    text-decoration: none;
    color: rgb(177, 142, 55);
    border-radius: 20px;
    transition: .2s ease;
}

#pageActual:hover{
    transform: scale(1.1);
}

/* FORM */

form {
    margin: 5%;
}

h3{
    color: rgb(33, 37, 41);
    font-weight: bold;
}

label {
    color: rgb(33, 37, 41);
}

hr {
    margin: 0;
    margin-bottom: 1em;
    color: rgb(177, 142, 55);
    border-width: 2px;
}

.btn{
    padding: 5px;
    margin: 3px 270px;
    background-color: rgb(33, 37, 41);
    color: rgb(177, 142, 55);
    border-radius: 20px;
    transition: .2s ease;
}

.btn:hover{
    transform: scale(1.1);
    background-color: rgb(33, 37, 41);
    color: rgb(177, 142, 55);
    border-radius: 20px;
}


/* FOOTER */

#mainfooter {
    background-color: rgb(12, 12, 13);
    border-top: 2px solid rgb(177, 142, 55);
    color: rgb(177, 142, 55);
    padding: 2em;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-content img {
    width: 6em; 
    margin-right: 2em; 
}

.footerlista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerlista li {
    margin-bottom: 10px;
}

.footerlista a {
    color: rgb(177, 142, 55);
    text-decoration: none;
    transition: color 0.3s ease; 
}

.footerlista a:hover {
    color: white; 
}

.footer-content img:hover{
    transform: scale(1.1);
}

