html, body {
    height: 100%;
    font-family: 'Raleway', sans-serif;
    background: #fc00ff;
}

h1.main-hero-title {
    margin: 0.5em 0 0.2em;
    font-size: 8.5vw;
}

body {
    font-size: 1.2em;
    color: #ffffff;
    margin: 0;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    background: #fc00ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #00dbde, #fc00ff);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #00dbde, #fc00ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding-bottom: 10px;
    padding-left: 20px;
    text-indent: -30px;
}

ul li::before {
    padding-right: 0.2em;
    content: "✋ "
}

.hero-wrapper {
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: rgba(0,0,0,0.2) */
}

.hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
}

.info-block {
    text-align: center;
    font-weight: 500;
    font-size: 1.3em;
    width: 1024px;
    max-width: 95%;
}

.main-block {
    margin-left: 60px;
    font-weight: 200;
    width: 760px;
    max-width: 100%;
}

@media (max-width: 969px) {
    .main-block {
        max-width: 80%;
        /* margin-left: 0; */
    }
}

@media (max-width: 909px) {
    .hero-block {
        max-width: calc(100% - 60px);
    }

    .main-block {
        max-width: 70%;
        margin-left: 0;
    }
    .info-block {
        max-width: 100%;
    }
}

@media (max-width: 769px) {
.hero-wrapper {
    height: auto;
}
}

@media (max-width: 649px) {
    h1.main-hero-title {
        margin: 1.4em 0 1em;
    }
    .hero-wrapper {
        justify-content: flex-start;
    }
    .main-block {
        font-size: 0.9em;
        max-width: 80%;
    }
    .info-block {
        font-size: 1.1em
    }
}