@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Open+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-image: url(images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: hsl(257, 40%, 49%);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    height: 100vh;
}

.wrapper {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    margin: 0 2rem;
}

.header img {
    width: 190px;
    padding-bottom: 20px;
}

.main {
    display: flex;
    align-items: center;
    gap: 40px;
}

.right h1 {
    color: #fff;
    margin-bottom: 20px;
}

.right p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn {
    background-color: #fff;
    padding: 13px 50px;
    border-radius: 25px;
    box-shadow: 0 8px 17px -8px rgba(0, 0, 0, .8);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    background-color: hsl(300, 69%, 71%);
    color: #fff;
}

@media only screen and (max-width: 1440px) {
    .left img{
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .main {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 26px;
    }
}