@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');
:root
{
    --violet: hsl(257, 40%, 49%);
    --soft-Magenta:hsl(300, 69%, 71%);
}

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

html , body
{
    height: 100%;
    width: 100%;
}

body 
{
    font-family: 'Open Sans';
    background-color: var(--violet);
    color: #ffffff;
    padding: 1.5rem 1.8rem 1.5rem 1.6rem;
}





img,video,iframe
{
    max-inline-size:100%;
    block-size:auto;
}


.heading
{
    font-family: 'Poppins';
}



.illustration
{
    width: 96%;
    margin:  0 auto;
}


.logo 
{
    width: 50%;
    margin-bottom: 2rem;
}

.bg-svg 
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: -10px;
    width: 100%;
    left: 0;
}

.content 
{
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.content h1 
{
    font-family: 'Poppins';
    width: 94%;
    font-size: 1.7rem;
}

.content p 
{
    width: 93%;
    font-size: 1.2rem;
    font-family: 'Open Sans';
}
.content>button
{
    background-color: white;
    color: var(--violet);
    border: none;
    padding: 1rem 0;
    border-radius: 100px;
    width: 60%;
    max-width: 200px;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.229);
    margin-top: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;

}
.content>button:hover
{
    transform: scale(1.1);
}

.links 
{
    margin-top: 4rem;
}

.links button 
{
    background-color: transparent;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.8rem;
    width: 30px;
    height: 30px;
}

.links button svg 
{
    width: 70%;
    cursor: pointer;
}


@media (min-width:800px)
{
    .bg-svg 
    {
        position: absolute;
        z-index: -1;
        top: 0;
        
        width: 100%;
        height: 100%;
      
    }

    body 
    {
        padding: 5rem;
    }
    .logo 
    {
        width: 15%
    }

    main 
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }

    .illustration
    {
        width: 100%;
        margin: 0;
    }
    
    .content
    {
        padding-top: 3rem;
        width: 100%;
        text-align: left;
        margin: 0;
        align-items: start;
    }

    .content h1 
    {
        font-size: 2rem;
        width: 50%;
    }
    .content p 
    {
        font-size: 1.5rem;
    }

    .links
    {
        align-self: flex-end;
    }
   
}