@charset "UTF-8";

@font-face {
    font-family:"titulos";
    src: url("../fonts/static/DancingScript-Regular.ttf");
}

@font-face {
    font-family:"subtitulos";
    src: url("../fonts/pacifico/Pacifico-Regular.ttf");
}

@font-face {
    font-family:"vinetas";
    src: url("../fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth\,wght.ttf");
}

/* Clases e id's*/

/* Estilos generales del sitio*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

h6{
    visibility: hidden;
    font-size: 0px;
}

header h1{
    font-family:"titulos";
    font-style: italic;
    font-size: 4.0rem;
}

header p, article h2{
    font-family:"subtitulos";
    font-size: 2.0rem;
}

article h2{
    font-family:"vinetas";
    font-size: 2.00rem;
}


/*Estilos de navegacion*/

nav{
    background-color: black;
    padding: 1rem;
}


nav ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:end;
}

nav ul li{
    margin: 0px 1rem;
}

nav ul li a{
    font-family:"vinetas";
    font-size: 1.50rem;
    font-style: italic;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 0.25rem 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
}

nav ul li a:hover{
    background-color: gray;
    border: 2px solid whitesmoke;
}

/*Estilos de Cabecera*/
header{
    background-color: antiquewhite;
    text-align: center;
    padding: 50px 20px;
    background-image: url("../img/fondo.jpg");
    color: white;
    background-size: cover;
}



/* Estilos del main*/
    main{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: start;
        padding: 1.75rem 0.0rem;
        
        background-color: #e9d6d6;
        height: auto;
    }

    article{
        width: 25%;
        padding: 0.25rem;
        margin: 1.5rem;
        border-radius: 12px;
        background: linear-gradient(315deg, #e9d6d6, #c4b4b4);
        box-shadow:  -18px -18px 36px #b9aaaa,
                     18px 18px 36px #fbe6e6;
        cursor: pointer;
        transition: transform 2s ease-in-out 0.25s;                     
    }

    article:hover{
        transform: scale3d(1.2, 1.2, 1.2);
    }
    
    article figure{
        width: 100%;
    }

    article figure img{
        border-radius: 12px;
        width: 100%;
    }

    figcaption{
        font-family:"vinetas";
        font-size: 2.00rem;
        text-align: center;
    }

    article p{
        font-family:"DancingScript-Regular";
        font-size: 1.75rem;
        text-align: justify;
        text-indent: 1.25rem;
        padding: 0.75rem;
    }

/* Estilos del footer*/

footer{
    background-color: black;
    color: red;
    text-align: right;
    font-size: 0.75rem;
    padding: 0.50rem;

    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
}

