body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(./images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: hsl(257, 40%, 49%); 
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: hsl(300, 69%, 71%);
    display: inline-block;
    width: 70%;
}

p {
    width: 70%;
}

.left img {
    width: 90%;
}

nav {
    margin: 3rem 0 6rem 5rem;
}

nav img {
    width: 8rem;
}


.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.left {
   grid-column: 1/2;
   display: flex;
   justify-content: center;
   align-items: center;
   
}

.right {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    grid-column: 2/3;
    padding: 1rem 2.5rem;
}
 button {
    border: none;
    padding: 1rem 2rem;
    width: 12rem;
    border-radius: 2rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background-color: hsl(300, 69%, 71%);
    color: aliceblue;
    box-shadow: 0px 10px 30px 2px hsla(300, 69%, 71%, 0.5);
    margin-top: 1rem;
 }

 button:hover {
    background-color: hsl(257, 40%, 49%);
    box-shadow: 0px 10px 30px 2px hsla(257, 40%, 49%, 0.5);
 }

 
ion-icon {
    color: hsl(300, 69%, 71%);
    font-size: 2rem;
    margin-right: 2rem;
}

footer {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 85%;
}

@media screen and (max-width: 768px) {
    body{
        background-image: url(./images/bg-mobile.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: space-between;
        margin: 0;
        padding: 0;
    }

    .right {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        font-size: 2rem;
    }

    nav img {
        width: 13rem;
    }

    nav {
        margin: 2rem 0 4rem 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    button {
        width: 15rem;
        margin-bottom: 6rem;
        font-size: 2rem;
        border-radius: 3rem;
    }

    footer {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 5rem;
    }

    ion-icon {
        font-size: 2.5rem;
        margin: 0 1rem
    }

    
}