body {
    margin: 0;
    padding: 0;
}

.showcase {
    background-image: url('../img/backround.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .5);
    height: 100px;
    display: flex;
    justify-content: center;
}

.inner-footer {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

a[href] {
    color: #000;
    text-decoration: none;
}

a[href]:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    .inner-footer {
        width: 100%;
    }
}

@media only screen and (max-width: 560px) {
    .footer {
        height: auto;
    }

    .inner-footer {
        flex-direction: column;
    }

    .inner-footer > * {
        margin-bottom: 20px;
    }

    .logo {
        margin-top: 20px;
		text-align: center;
    }
}