html, body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
body {
    background-image: url('/images/sporteed-bg.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
a {
    text-decoration: none;
    color: #000;
}
section {
    position: relative;
    width: 100vw;
    height: 100%;
    display: table;
}
section figure {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
footer {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
}
footer a {
    color: #444;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 3px;
}
@media screen and (max-width: 575px) {
    section figure img {
        width: 300px;
    }
}
@media screen and (min-width: 576px) {
    section figure img {
        width: 450px;
    }
}