* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif; 
    color: #5d5d7d;
    font-weight: 400;
}

.wrapper {
    height: 100vh;
    width: 100vw;
}

.section-right {
    display: inline-block;
    width: 30%;
    height: 100%;
    background-color: rgba(93, 93, 125, 0.18);
    position: absolute;
}

header {
    margin-top: 24px;
    width: 100%;
    height: 41.12px;
    text-align: center;
}

a {
    font-size: 28px;
    line-height: 41px;
    margin-right: 41px;
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
}

a:active {
    opacity: 0.5;
}

a:nth-child(2){
    opacity: 0.4;
}

img {
    position: relative;
    top: 20%;
    right: 130px;
}

.section-left {
    display: inline-block;
    width: 70%;
    height: 100%;
    padding-left: 300px;
    margin-top: 17%;
}

h1 {
    font-size: 70px;
    line-height: 80px;
    width: 368px;
}

p {
    font-size: 28px;
    line-height: 48px;
    margin: 15px 0;
    opacity: 0.6;
    width: 540px;
}

button {
    background: #9499EA;
    color: #FFFFFF;
    box-shadow: 0px 10px 24px rgba(148, 153, 234, 0.0979959);
    width: 269px;
    height: 62px;
    border-radius: 30px;
    border: none;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.5;
}

@media screen and (max-width: 1350px){
    .section-left {
        width: 100%;
        height: 50%;
        padding: 0;
        margin: 0;
    }

    .section-right {
        display: block;
        height: 100%;
        width: 100%;
        position: static;
    }

    img {
        position: static;
        max-width: 80%;
        padding: 40px;
        margin: 0 auto;
        display: block;
    }

    a {
        font-size: 20px;
    }

    h1 {
        font-size: 36px;
        line-height: 52px;
        width: auto;
        margin: 58px 50px 0 50px;
        text-align: center;
    }

    p {
        margin: 15px 40px;
        width: auto;
        text-align: center;
        font-size: 14px;
        line-height: 24px;
    }

    button { 
        display: block;
        margin: auto;
    }
}


