@font-face {
    font-family: 'Brockmann';
    src: url('fonts/brockmann-regular-webfont.woff2') format('woff2'),
        url('fonts/brockmann-regular-webfont.woff') format('woff'),
        url('fonts/brockmann-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Brockmann';
    src: url('fonts/brockmann-medium-webfont.woff2') format('woff2'),
        url('fonts/brockmann-medium-webfont.woff') format('woff'),
        url('fonts/brockmann-medium-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Brockmann';
    src: url('fonts/brockmann-semibold-webfont.woff2') format('woff2'),
        url('fonts/brockmann-semibold-webfont.woff') format('woff'),
        url('fonts/brockmann-semibold-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Brockmann';
    src: url('fonts/brockmann-bold-webfont.woff2') format('woff2'),
        url('fonts/brockmann-bold-webfont.woff') format('woff'),
        url('fonts/brockmann-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    font-family: 'Brockmann', sans-serif;
    font-weight: 400;
    color: #fff;
}

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100vh;
    text-align: center
}

.box {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

h1 {
    font-size: 48px;
    font-weight: 600;
}

h2 {
    font-size: 28px;
}

h3 {
    opacity: 0.65
}

.box img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px
}

@media screen and (max-width:720px) {
    h1 {
        font-size: 36px;
        font-weight: 600;
    }

    h2 {
        font-size: 21px;
    }

    h3 {
        font-size: 16px;
    }

    .box {
        gap: 15px
    }

    .box img {
        max-width: 150px;
        margin-bottom: 20px
    }
}
