* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: 'Bebas Neue', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    color: #fff;
    font-weight: 400;
    font-style: normal;
    background: #333;
    overflow: hidden;
}

.page-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding-top: 50px;
}

.page {
    position: relative;
    background-image: url('showcase.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.page h1 {
    font-size: 70px;
}

.page p {
    font-size: 30px;
}


footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 15px !important;
}

@media (max-width: 650px) {
    .page img {
        width: 50%;
    }

    .page h1 {
        font-size: 40px;
    }

    footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}


@media (max-height: 600px) {
    img {
        width: 20%;
    }
}

@media (max-height: 400px) {
    img {
        padding-bottom: 30px;
    }
}