@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%);
}
body{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    background-color: var(--Violet);
    color: white;
    background-image: url(images/bg-mobile.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.container{
    display: flex;
    flex-direction: column;
    margin: 40px;
}
/* -----------> Header <----------- */
header .logo{
    height: 40px;
    margin-bottom: 70px;
}

/* -----------> Mockups <----------- */
.mockupsContainer{
    text-align: center;
}
.mockupsContainer .mockups{
    width: 100%;
    max-width: 700px;
    margin-bottom: 70px;
    
} 
/* -----------> Main <----------- */
main{
    text-align: center;
    margin-bottom: 60px;
}
main h1{
    margin: 0;
    font-size: 1.563em;
    font-weight: 500;

}
main p{
    font-family: "Open Sans", sans-serif;
    margin: 20px 0;
    font-weight: 300;
    line-height: 24px;
}
main button{
    font-family: "Poppins", sans-serif;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    background-color: white;
    color: var(--Violet);
    border-style: none;
}
main button:hover{
    background-color: var(--Soft-Magenta);
    color: white;
    cursor: pointer;
}
/* -----------> Social Networks <----------- */
.socialNets{
    text-align: center;
    margin-bottom: 70px;
}
.socialNets a{
    margin: 0 3px
}
.socialNets .fa-brands{
    height: 16px;
    width: 16px;
    font-size: 16px;
    padding: 8px;
    border-radius: 50%;
    color: white;
    border: 1px solid white;
}
.socialNets .fa-brands:hover{
    border: 1px solid var(--Soft-Magenta);
    color: var(--Soft-Magenta);
    cursor: pointer;
}
/* -----------> Footer <----------- */
.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: white;
}
.attribution a:hover{
    color: var(--Soft-Magenta);
}
/* -----------> 768px <----------- */
@media screen and (min-width: 768px) {
    .container{
        margin: 70px;
    }
    /* -----------> Header <----------- */
    header .logo{
        height: 60px;
    }
    /* -----------> Main <----------- */
    main h1{
        font-size: 2.5em;
    }
    main p{
        font-size: 1.2em;
        line-height: 26px;
        margin: 30px 0;
    }
    main button{
        height: 60px;
        border-radius: 30px;
        font-size: 1.25em;
    }
    /* -----------> Social Networks <----------- */
    .socialNets a{
        margin: 0 5px
    }
    .socialNets .fa-brands{
        height: 20px;
        width: 20px;
        font-size: 20px;
        padding: 10px;
    }
}
/* -----------> 1280px <----------- */
@media screen and (min-width: 1280px){
    body{
        background-image: url(images/bg-desktop.svg);
        background-repeat: no-repeat;
        background-size: 100%;
    }
    .container{
        margin: 70px auto;
        width: 1180px;
        height: 645px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1f 1f 1f 1fr;
    }
    /* -----------> Header <----------- */
    header{
        grid-column: 1/3;
        grid-row: 1/2;
    }
    /* -----------> Mockups <----------- */
    .mockupsContainer{
        grid-column: 1/2;
        grid-row: 2/3;
    }
    .mockupsContainer .mockups{
        margin: 0;
    }
    /* -----------> Main <----------- */
    main{
        grid-column: 2/3;
        grid-row: 2/3;
        text-align: left;
        /* margin-left: 60px; */
        margin: auto 0 auto 60px;
    }
    /* -----------> Social Networks <----------- */
    .socialNets{
        grid-column: 2/3;
        grid-row: 3/4;
        text-align: right;
        margin-bottom: 20px;
    }
    .socialNets a{
        text-align: center
    }
    /* -----------> Footer <----------- */
    footer{
        grid-column: 1/-1;
        grid-row: 4/5;
    }
}
/* -----------> 1440px <----------- */
@media screen and (min-width: 1440px){
    .container{
        width: 1280px;
        height: 700px;  
    }
    /* -----------> Main <----------- */
    main{
        margin-top: 30px;
    }
    main h1{
        font-size: 2.813em;
    }
    main p{
        font-size: 1.313em;
        line-height: 28px;
        margin-bottom: 24px;
    }
}