html, body, img, h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
    border: 0;
}
body {
    height: 100vh;
}
body * {
    box-sizing: border-box;
}
header, section, footer {
    width: 100%;
    max-width: 1024px;
}
img {
    width: 100%;
    height: 100%;
}

body,
h3, h4 {
    font-family: 'Poiret One', cursive;
    color: rgba(64,64,64,1);
}
h1, h2 {
    font-family: 'Nanum Myeongjo', serif;
    padding: 16px 0;
}
p {
    padding: 16px 0;
}

section#main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
    margin-top: -24px;
    text-align: center;
}

section#main .image-container {
    width: 64px;
    margin: 0 auto;
    opacity: .75;
    transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}
section#main .image-container:hover {
    opacity: 1;
}

footer {
    position: fixed;
    bottom: 0;
    max-width: unset;
    height: 48px;
    text-align: center;
    color: rgba(128,128,128,1);
    font-size: 0.75em;
}

@media only screen and (min-width: 1024px) {

}