@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --Violet: hsl(257, 40%, 49%);
    --Soft-Magenta: hsl(300, 69%, 71%);
}

img{
    width: 100%;
}
body{
    background-image: url(images/bg-desktop.svg);
    background-repeat: no-repeat;
    background-size:contain;
    background-color: var(--Violet);
    font-family: 'Open-Sans',sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    margin: 3rem 3rem 0 3rem;
    max-width: 80%;
}
.logo img{
    width: 8rem;
    margin-bottom: 2rem;
}
.cont{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1.40fr 1fr;
    gap: 2rem;
}
.right{
    margin-top: 2rem;
    margin-left: 1rem;
}
.right h1{
    color: white;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.right p{
    color: white;
    opacity: .5;
    line-height: 1.3;
    margin-bottom: 1rem;
}
button{
    padding: 1rem;
    width: 10rem;
    border-radius: 10rem;
    border: none;
}
button:hover{
    background-color: var(--Soft-Magenta);
    cursor: pointer;
    color: white;
}
footer{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-left: -8rem;
    gap: 10px;
}

footer img{
    width: 32px;
    color: white;
    border-radius: 50%;
    padding: 5px;
}
footer img:hover{
    background-color: var(--Soft-Magenta);
}

@media only screen and (max-width: 375px){
    .cont{
        display: grid;
        grid-template-columns: 1fr;
    }    
    .right{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .right h1{
        font-size: 1.5rem;
    }
    footer{
        margin-left: 0;
        justify-content: center;
        margin-top: 1rem;

    }
    
}