html, body {
    margin: 0;
    padding: 0px;
    position: relative;
    color: #de364d;
    box-sizing: border-box;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

body {
    padding: 30px;
}

.logo {
    display: block;
    margin-bottom: 5px;
}

h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
}

h1 span {
    font-weight: 700;
}

p {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    color: #828282;
}

a.btn {
    width: 270px;
    background: rgb(224, 50, 73);
    background: linear-gradient(128deg, rgba(224, 50, 73,1) 0%, rgba(224, 22, 48,1) 100%);
    border-radius: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
    display: block;
    text-decoration: none;
    -webkit-box-shadow: 10px 10px 35px -5px rgba(224, 50, 73, 1);
    -moz-box-shadow: 10px 10px 35px -5px rgba(224, 50, 73, 1);
    box-shadow: 10px 10px 35px -5px rgba(224, 50, 73, 1);
}

a.btn:hover {
    font-weight: 700;
    text-decoration: none;
}

.copy {
    text-align: right;
    font-weight: 400;
    color: #053877;
}

.copy a {
    display: inline-block;
    background: url(img/eighteen_studio-ico_2.svg) no-repeat;
    background-size: 42px 20px;
    width: 42px;
    height: 20px;
    margin-top: 5px;
}

.copy a:hover {
    display: inline-block;
    background: url(img/eighteen_studio-ico_2.svg) no-repeat;
    background-size: 42px 20px;
    width: 42px;
    height: 20px;
    margin-top: 5px;
}

footer {
    color: #828282;
}

@media (max-width: 1000px) {
    footer {
        margin-top: 70px;
        margin-bottom: 50px;
    }
}

@media (min-width: 1000px) {
    .m {display: none;}

    html, body {
        width: 100%;
        min-height: 800px;

    }

    body {
        background: url(img/bg.jpg) no-repeat;
        background-position: top right;
        background-size: contain;
    }

    h1 {
        font-size: 80px;
        font-weight: 400;
        line-height: 80px;
    }

    p {
        max-width: 500px;
    }

    footer {
        position: absolute;
        bottom: 30px;
        left: 30px;
    }

    .copy {
        position: absolute;
        bottom: 30px;
        right: 30px;
    }

    .copy a {
        background: url(img/eighteen_studio-ico_1.svg) no-repeat;
    }

}

@media (min-width: 1600px) {
    body {
        padding: 60px;
    }

    html, body {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
    }

    p {
        max-width: 600px;
    }

    .container {
        margin-top: 80px;
    }

    a.btn {
        margin-top: 40px;
    }

    h1 {
        font-size: 80px;
        line-height: 80px;
    }

    footer {
        position: absolute;
        bottom: 30px;
        left: 60px;
    }

    .copy {
        position: absolute;
        bottom: 30px;
        right: 60px;
    }
}