@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: 'Montserrat', full; */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* <uniquifier>: Use a unique and descriptive class name
   <weight>: Use a value from 100 to 900 */
   
:root {
    --marge: 2.3vw 6vw;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: white;
    font-family: "Exo 2", serif;
    font-size: 1rem;
    font-weight: 300;
}

h1{
    font-family: 'Spartan', Verdana;
    font-weight: 600;
    font-size: 5.5rem;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333961;
}

p{
    font-family: "Exo 2", serif;
    font-size: 1.04rem;
    font-weight: 300;
    color: white;
}

section,
footer{
    overflow: hidden;
}


.chapter{
    width: max-content;
    position: relative;
    top: -1px;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header{
    height: 92vh;
    width: 92%;
    margin-top: 30px;
    background-color: #7572B2;
    position: relative;
    border: solid 5px white;
    border-radius: 25px;
    box-shadow: 0px 25px 15px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.title{
    z-index: 1;
    text-align: center;
    color: white;
}

.title > span{
    font-family: 'Spartan', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
}

.network{
    position: absolute;
    bottom: -5px;
    z-index: 10;
    border: solid 5px white;
    border-radius: 25px 25px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 2rem;
    cursor: pointer;
    background-color: #5a5989;
}

.logoNet{
    height: 30px;
    width: auto;
    margin: 0 1vw;
}

main{
    width: 100%;
    height: auto;
    display: contents;
    align-items: center;
}

section,
footer{
    width: 92%;
    height: auto;
    margin-top: 5%;
    position: relative;
    border: solid 5px white;
    box-shadow: 0px 25px 15px 3px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    font-family: 'Spartan', sans-serif;
}

h2{
    padding: var(--marge);
    font-family: Verdana;
    font-weight: bold;
    font-size: 3vw;
    color: #fef186;
    border: solid 5px white;
    border-radius: 25px 0 25px 0;
    background-color: #5a5989;
    margin-left: -5px;
    margin-top: -5px;
}

/*_____ Responsive 480px -> 959px _____*/

@media screen and (max-width: 959px){
    header,
    section,
    footer {
        width: 100%;
        border-radius: 0;
    }

    .chapter{
        width: 100%;
        border-bottom: solid 1px white;
    }

    h2{
        border: none;
    }
}

/*_____ Responsive 0px -> 479px _____*/

@media screen and (max-width: 479px){
    h1{
        font-size: 3rem;
    }

    .title > span{
        font-size: .8rem;
    }
}




