*{
    padding: 0;
    margin: 0;
}

body{
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #F9DEC9;
}

.footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #5E412F;
}

.logo{
    display: inline-flex;
}

.logo img{
    width: 3em;
}

.navbar h1{
    color: #F9DEC9;
    font-family: cursive;
    padding-left: 10px;
    align-content: center;
}

.nav-links{
    /*Quitar viñetas*/
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li{
    margin-left: 20px;
}

.nav-links a{
    /*Cambiar estilo de links de navegacion*/
    font-size: larger;
    transition: all 0.2s ease-in-out;
}

.nav-links a:hover{
    color: rgb(230, 230, 90);
    text-shadow: 0px 0px 5px rgb(244, 206, 206);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
}

/*Estilos de pie de pagina*/
footer{
    background-color: #5E412F;
    text-align: center;
    padding: 10px 0px 10px;
    color: #fcebb6;
}

.newsletter h3{
    margin: 0.5em 0 0.5em 0;
}

.newsletter button[type="submit"]{
    background-color: #c88fc1;
    height: 35px;
    width: 100px;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    cursor: pointer;
}

.newsletter button:hover{
    scale: 1.05;
    background-color: #a14a97;
}

.newsletter input[type="email"]{
    font-size: 1.1em;
    text-align: center;
    width: 430px;
    height: 25px;
    margin-bottom: 0.5em;
    border-radius: 5px;
}

.social-media a{
    color: beige;
    font-size: x-large;
    width: 2em;
}

.social-media a:hover{
    scale: 1.05;
    color: rgb(205, 189, 176);
}

/*Para pantallas pequenas*/
@media screen and (max-width:768px){
    .navbar {
        flex-direction: row;
        align-items: center;
    }
    
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        visibility: hidden;
        width: 35%;
        height: 180px;
        background-color: #5e412fd9;
        transition: 0.3s ease;
    }

    .nav-links li{
        margin-top: 20px;
    }
    
    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links a{
        font-size: larger;
    }

    .navbar h1{
        font-size: 1em;
    }

    .newsletter input[type="email"]{
        font-size: 0.55em;
        text-align: center;
        width: 220px;
        height: 30px;
        margin-bottom: 10px;
    }

    .newsletter h3{
        margin: 0.3em 0 0.3em 0;
        font-size: medium;
    }

    .social-media a{
        font-size: large;
        width: 1.5em;
    }

    .menu-toggle {
        display: block;
    }
}