.attribution { 
    font-size: 11px;
    text-align: center; 
}
.attribution a {
     color: hsl(228, 45%, 44%); 
}

:root {
    /* PRIMARY */
    --BGCOLOR: hsl(257, 40%, 49%);
    --OTHERBGCOLOR: hsl(300, 69%, 71%);

}

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

body {
    width: 100%;
    height: 100vh;
    background-color: var(--BGCOLOR);
    background-image: url(./images/bg-desktop.svg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Open Sans", sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    padding: 0 6rem ;
    
}

.wrapper {
    height: 100vh;
}

.header {
    margin-top: 1rem;
    width: 100%;
}

.header_image img{
    width: 10rem;
    height: auto;
}

.content {
    width: 100%;
    height: 70%;
    display: flex;
    gap: 2rem;
    padding: 1rem 0; 
    margin-top: 1rem;

}

.illustration {
    width: 60%;
    
}

.illustration img {
    width: 100%;

}

.content_text {
    width: 40%;
    height: auto;
    font-size: 16px;
    margin-top: 5rem;

}

.content_text h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;

}

.content_text p {
    margin-top: 1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    line-height: 1.5rem;
} 

button {
    width: 7rem;
    height: 2.5rem;
    border-radius: 3rem;
    border: none;
    box-shadow: 0 8px 17px -8px rgba(0, 0, 0, 1);
    transition: all 500ms ease;
    margin: 1rem 0;
}

button:hover {
    background-color: var(--OTHERBGCOLOR);
    color: #fff;
}
.social {
    margin-top: 1rem;
}

.social ul {
    display: flex;
    justify-content: flex-end;
}

.social ul li {
    padding-left: 1rem;
    list-style-type: none;

}


.social ul li a {
    border: 1px solid #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: #fff;
    transition: all 500ms ease;
    display: flex;
    justify-content: center;
    align-items: center;
    
}


.social ul li a:hover {
    color: var(--OTHERBGCOLOR);
    border: 1px solid var(--OTHERBGCOLOR);
}

@media screen and (width < 1022px) {
    .content_text {
        margin-top: 0;
    }
}

@media screen and (width < 785px) {
    .content_text {
        
    }
}