body {
    font-family: "Italiana", serif;
    font-weight: 300;
    font-size: 5em;
    font-style: normal;
    letter-spacing: 3px;
    margin: 10px;
    color: #000000;
}
div.main {
    max-width: 1360px;
    margin: 0 auto;
}
img.logo {
    max-height: 200px;
    max-width: 408px;
    margin: 20px auto 10px auto;
}
header {
    display: block;
    text-align: center;
    border-bottom: 2px #ff00ff solid;
}
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;
}
nav.top {
    display: block;
    text-align: right;
    margin: 20px 10px;
}
nav a, a.home {
    text-decoration: none;
    border-bottom: 2px #ff00ff solid;
    color: #000000;
    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;
    margin: 20px;
}
img.square-bdr {
    max-height: 500px;
    max-width: 500px;
    border: 2px #ff00ff 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: 0;
    border-radius: 50px;
}
address {
    font-style: normal;
}
@media only screen and (min-device-width: 600px) {
    body {
        font-size: 2.5em;
    }
    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;
    }
}