/*Hoja de estilos especial para el inicio del sitio*/


/*Esta hoja la carga únicamente cuando es el inicio de la página*/

@import url(https://fonts.googleapis.com/css?family=Lobster);
body {
    /*background: rgb(237, 235, 235);*/
    background: white;
    font-family: sans-serif;
}
h1 {
    font-size: 45px;
    /*color: #7a7a7a;*/
    color: rgb(198, 100, 158);
    font-family: 'Poiret One', cursive;
    /*font-family: 'Lobster', cursive;*/
}
header {
    max-width: 600px;
    margin: 200px auto;
    display: flex row wrap;
}
header h1 {
    text-align: center;
    text-shadow: 3px 3px #ccc;
}
header nav {
    display: flex;
}
header nav a {
    /*font-family: 'Cinzel', serif;*/
    font-family: 'Lobster', cursive;
    font-size: 20px;
    color: rgb(51, 51, 51);
    padding: 10px;
    text-decoration: none;
    flex-grow: 1;
    text-align: center;
}
header nav a:hover {
    border-bottom: 4px solid rgb(228, 37, 106);
    text-decoration: none;
    color: black;
}
