* {
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    text-align: center;
    padding: 0.5em;
}

p {
    margin: 0.5em 0;
}

body {
    font-family: Roboto,sans-serif;
    font-size: 12px;
    line-height: 1.45;
    background-color: #000;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header {
    line-height: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    color: #fff;
    z-index: 1;
}

footer {
    min-height: 1.4rem;
    text-align: center;
    background-color: #000;
    line-height: 1.4rem;
    font-size: 10px;
    color: #c7bdba;
}

footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 75%;
}
footer .footer-inner .footer-left {
    width: 50%;
}
footer .footer-inner .footer-center {
    width: 100%;
}
footer .footer-inner .footer-right {
    width: 50%;
}

#contentWrapper {
    margin: 0 auto;
    height: 100%;
    flex: 1;
    width: 100%;
    background-color: #000;
    padding: 1rem;
    text-align: center;
}

#contentWrapper img {
    margin-top: 2.5rem;
    width: 500px;
    max-width: 100%;
}

#contentWrapper > div {
    color: #c7bdba;
    margin: 3rem auto;
    font-weight: bold;
    font-size: 14px;
    display: table;
}

#contentWrapper > div > span {
    display: table-cell;
    vertical-align: middle;
}

#contentWrapper > div > .main-title {
    padding: 0 1rem;
}

.icon-metal {
    background: url('icon_metal.svg');
    background-repeat: no-repeat;
    display: inline-block;
    height: 2rem;
    width: 2rem;
}

/* For tablets: */
@media only screen and (max-width: 768px) {
    #contentWrapper {
        width: 100%;
    }
    .footer-inner {
        width: 100% !important;
    }
}

/* For mobile phones: */
@media only screen and (max-width: 450px) {
    .footer-inner .footer-left {
        width: 100% !important;
    }
    .footer-inner .footer-right {
        width: 100% !important;
    }

    #contentWrapper > div {
        font-size: 12px;
    }
}
