@charset "utf-8";

body{
    background-color:floralwhite;
    font-family: sans-serif;
    text-align: center;
    color: #2e065d;
}

*{
    box-sizing: border-box;
}

nav{
    display: flex;
    justify-content: center;
}

header ul{
    list-style: none;
    margin: 1em;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

header ul li{
    margin: 0 1em .5em 0;
    display: flex;
}

header ul li a{
    color: #fff;
    background-color: #2e065d;
    font-family: sans-serif;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: .5em;
    border-radius: 10px;  
}

header ul li a:hover{
    background-color: #e60058;
    color: #fff;
}


img{
    width: 100%;
}

.efecto1 img{
    width: 30%;
}

h1{
    font-family: sans-serif;
}

h2, h3{
    text-align: center;
    font-size: 1.3em;
    font-family: sans-serif;
}

p{
    font-size: .9em;
}

footer p{
    background-color: #2e065d;
    font-size: .7em;
    color: #fff;
    padding: 2em;
    border-radius: 10px;
}