@font-face {
    font-family: myFirstFont;
    src: url(../fonts/Azonix.otf);
  }

body {
   position: relative;
    font-family: 'open-sans', serif;
    color: #fff;
    background: url(../images/background-image.jpg) center center;
    background-size: cover;
}

main {
    padding: 2em 0 0;
    text-align: center;
    height: 100vh;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-family: myFirstFont;
    font-size: 39px;
    margin-bottom: 30px;
}

.logo-block {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.logo-block figure {
    width: 137px;
    margin: 0 auto 10px;
}

.logo-block figure img {
    width: 100%;
    height: auto;
}

.main-content p {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
}

.main-content-top {
    margin-bottom: 95px;
}

.main-content-bottom a{
    color: #488fcd;
    text-decoration: none;
    text-transform: lowercase;
}

.bottom-block {
    color: #000;
    font-size: 30px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;

    border-bottom: 15px solid #478ecc;
    background: url(../images/bottom-block.png) no-repeat center bottom;
    background-size: auto;
    padding-top: 1em;
}

.bottom-block p {
    text-decoration: none;
}

.socials {
    padding: 1em 0;
}

.socials li {
    width: 41px;
    display: inline-block;
    padding: 0 0.3em;
}

.socials li img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 35px;
    }

    .main-content p {
        font-size: 18px;
    }

    .bottom-block {
        font-size: 26px;
    }

    .main-content-top {
        margin-bottom: 25px;
    }
}