/*

font-family: 'Poppins', sans-serif;
font-family: 'Open Sans', sans-serif;

*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    min-height: 100vh;
    width: 100%;
    color: white;
    background-color: hsl(257, 40%, 49%);
    background-image: url(images/bg-desktop.svg);
    background-repeat: no-repeat;
    padding-left: 5%;
    padding-right: 5%;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
}
.attribution { 
    font-size: 11px; 
    text-align: center; 
}
.attribution a { 
    color: hsl(300, 69%, 71%); 
}
.header img {
    width: min(200px, 30%);
}
.middle-section {
    display: flex;
    padding-top: 20px ;
}
.img-section {
    width: 50%;
}
.img-section img {
    width: 100%;
    height: 100%;
}
.article {
    width: 50%;
    padding: 30px;
}
header {
    padding: 20px 0;
}
.article .article-item {
    padding: 10px 0;
}
.middle-section button {
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    color: hsl(257, 40%, 49%);
    margin: 10px 0;
    box-shadow: 0px 1px 5px black;
    cursor: pointer;
}
.middle-section button:hover {
    background-color: hsl(300, 69%, 71%);
    color: white;
}
p {
    font-family: 'Open Sans', sans-serif;
}
.socials {
    display: flex;
    width: 20%;
    margin-left: auto;
    gap: 10px;
    justify-content: flex-end;
    padding: 10px 0;
}
footer i {
    font-size: 15px;
    outline: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
}
footer i:hover {
    color: hsl(300, 69%, 71%);
    outline: 1px solid hsl(300, 69%, 71%);
}
.fa-facebook-f {
    padding: 10px;
}
.fa-twitter {
    padding: 10px;
}
.fa-instagram {
    padding: 10px;
}

@media screen and (max-width: 600px) {
   .container {
        background-image: url(images/bg-mobile.svg);
        background-size: contain;
   }
   .middle-section {
        display: block;
   } 
   .article {
        width: 100%;
    }
    .img-section {
        width: 100%;
    }
    .article h1,
    .article p {
        text-align: center;
    }
    .button {
        display: flex;
        justify-content: center;
    }
    .socials {
        width: 100%;
        justify-content: center;
    }
}