:root {
    --fucia: #8400cc;
    --black: #000000;
    --background: #d3d3ff;
}
body {
    font-family: "Italiana", serif;
    font-weight: 300;
    font-size: 4.5em;
    font-style: normal;
    letter-spacing: 3px;
    margin: 10px;
    color: var(--black);
    background-color: var(--background);
    margin-top: 0;
}
div.main {
    max-width: 1360px;
    margin: 0 auto;
}
img.logo {
    max-height: 89px;
    max-width: 240px;
    margin: 30px 0 10px 20px;
}
header {
    display: block;
    text-align: left;
}
header a {
    text-decoration: none; 
    color: #000000;
}
header h1 {
    margin: 0; 
    font-size: 2em;
}
div.jaspe {
    background-image: url(img/jaspe_sm.png);
    height: 21px;
    border-top: 1px var(--fucia) solid;
    border-bottom: 1px var(--fucia) solid;
    border-right: 4px var(--fucia) solid;
    border-left: 5px var(--fucia) solid;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
article {
    display: block;
    width: 100%;
    padding-bottom: 40px;
    text-align: center;
}
footer {
    display: block;
    width: 100%;
    margin: 100px 0 200px 0;
    text-align: center;
}
h1, h2 {
    font-family: "Italiana", serif;
    font-weight: 200;
}
h1 {
    font-size: 2em;
    margin: 50px 0 5px 0;
}
h2 {
    font-size: 1em;
    margin: 5px 0 50px 0;
}
nav.top {
    display: block;
    text-align: right;
    margin: 30px 10px;
}
nav a, a.home {
    text-decoration: none;
    border-bottom: 2px var(--fucia) solid;
    color: var(--black);
    margin: 10px;
}
div.flex-nav {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
div.flex-article {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
img.square {
    max-height: 500px;
    max-width: 500px;
    border: 2px var(--fucia) solid;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    margin: 20px;
}
img.square-sm {
    max-height: 350px;
    max-width: 350px;
    border: 2px var(--fucia) solid;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    margin: 20px;
}
div.social {
    height: 130px;
}
img.social {
    height: 100px;
    width: 100px;
    margin: 0 30px 0 30px;
    transition: width .5s, height .5s, border-radius .5s, box-shadow .5s;
    box-shadow: none;
    border-radius: 50px;
}
address {
    font-style: normal;
}
img.etiqueta {
    max-width: 319px;
    max-height: 534px;
    border: 2px var(--fucia) solid;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    margin: 20px;
}
c {
    text-align: center;
}
@media only screen and (min-width: 600px) {
    body {
        font-size: 3em;
    }
    img.social:hover {
        height: 130px;
        width: 130px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
        transition: width .5s, height .5s, border-radius .5s, box-shadow .5s;
        border-radius: 65px;
    }
}