* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

img {
    width: 568px;
    height: 500px;
}

.left {
    display: inline-block;
    margin-left: 50px;
}

.right {
    display: inline-block;
    padding-left: 86px;
    vertical-align: top;
}

header {
    margin-bottom: 150px;
    margin-top: 44px;
    margin-left: 76px;
}

a {
    margin-right: 23px;
    color: #989D9C;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

a:hover {
    opacity: 0.7;
}

a:active {
    opacity: 0.5;
}

.button-header {
    width: 130px;
    height: 41px;
    border-radius: 50px;
    border: none;
    background-color: #665AE1;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
}

.button-header:hover {
    opacity: .7;
    color: #000;
}

.button-header:active {
    opacity: .5;
    color: #000;
}

h1 {
    font-weight: 900;
    font-size: 100px;
    color: #515151;
}

h2 {
    font-weight: 500;
    font-size: 58px;
    color: #515151;
}

p {
    padding-top: 30px;
    font-weight: 400;
    font-size: 24px;
    color: #848484;
    width: 515px;
    text-align: justify;
}

.button-footer {
    width: 239px;
    height: 64px;
    border-radius: 20px;
    background-color: #ADFF00;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 65px;
}

.button-footer:hover {
    opacity: .7;
    color: #665AE1;
}

.button-footer:active {
    opacity: .5;
    color: #665AE1;
}

@media (max-width: 500px) {
    header {
        display: none;
    }

    img {
        margin-top: 200px;
        margin-right: 80px;
    }

    h1 {
        width: 500px;
        text-align: center;
        margin-left: 60px;
        margin-top: 70px;
    }

    h2 {
        width: 500px;
        text-align: center;
        margin-left: 60px;
    }

    p {
        display: none;
    }

    .button-footer {
        margin-left: 200px;
        width: 239px;
        height: 64px;
    }
}