@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700);

@import url(https://fonts.googleapis.com/css?family=Lobster);
@import url(https://fonts.googleapis.com/css?family=Lobster+Two:400,400italic,700,700italic);

* {
    box-sizing:border-box;
    list-style: none;
}

a{
    text-decoration: none;
}

body {
    background-color: #ffd914;
    margin: 0;
    padding: 0;
}

.menu {
    max-width: 960px;
    margin: auto;
    
}
.menu ul {
    display: flex;
    font-family: "roboto";
    font-weight: 600;
    font-size: 15px;
    justify-content: center;
    }

.menu li {
    margin: 1em;
    border-left-color: white;
    
}

.menu li a {
    color: white;
    padding: 1em;
}

.menu li a:hover {
    background-color: #ffe979;
    
}

main {
    background-image: url(../img/fondo.png);
    position: static;
    height: 610px;
    background-repeat: ;
    display: flex;
    
}

.contenido {
    max-width: 960px;
    margin: auto;
    background-color: rgba(300, 300, 300, 0.8);
    border-radius: 30px;
    display: flex;

}

.contenido img{
    width: 200px;
    height: 200px;
    margin-top: 5em;
    margin-left: 4em;
    margin-bottom: 5em;
}

.texto {
    margin-top: 5em;
    margin-left: 4em;
    margin-right: 4em;
    margin-bottom: 5em;
}

.texto h1 {
    font-family: "lobster two";
    color: #5a4141;
    font-size: 40px;
    margin: 0;
}

.texto p {
    font-family: "quicksand";
    text-align: justify;
    
}

.redes{
    padding-left: 6em;
    margin-top: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
}

.redes img {
    width: 40px;
    height: 40px;
}

.redes img:hover {
    opacity: 0.5;
}


.futer {
    max-width: 960px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.futer h2 {
    margin: 0;
    margin-top: 1em;
    font-family: "roboto";
    color: white;
    font-size: 20px;
}

.futer p {
    margin: 0;
    margin-top: 0.5em;
    font-family: "quicksand";
    color: white;
    font-size: 14px;
    padding: 0 5em;
    
    
}