@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Poppins:wght@200;400;600;800&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    width: 100vw;
    height: 100vh;
    background-image: url('../images/laptop-notebook-computer-writing-work-hand-883504-pxhere.com.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    
    font-family: 'Montserrat', sans-serif;
}

a:hover{
    text-decoration: underline;
    transition: 0.3s;
}
a img{
    width: auto;
    height: 20px;
    margin-right: 5px;
}
a{
    position: absolute;
    transition: 0.3s;
    top: 10px;
    left: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.corps h1{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
   

}



.liste{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: aqua; */
    flex-wrap: wrap;
}

.vignette p {
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    color: rgb(53, 53, 53);
}
.vignette:hover{
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.93); 
    box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.93);

}
.vignette{
    width: 300px;
    border: solid rgb(41, 41, 41) 2px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.93); 
    box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.93);
    margin: 15px;
}

.input-lien,.button-lien{
 height: 50px;
 width: 500px;
 font-size: 1.8rem;
 margin: 5px;
 text-align: center;
}

.button-lien:hover{
    -webkit-box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.93); 
    box-shadow: 0px 0px 18px -4px rgba(0,0,0,0.93);
    cursor: pointer;
    transition: 0.2s;
    
}
.button-lien{
    transition: 0.2s;
    background-color: #1CADFC;
    color: white;
    border: none;
}


.lien{
    flex-direction: column;
}
@media screen and (max-width:767px)
{
    body{
        align-items: flex-start;
    }
    .corps h1{
        font-size: 2rem;
        margin-top: 100px;
    }
    .vignette{
        width: 80%;
        height: 150px;
    }

    .corps{
        max-width: 100%;
        overflow-wrap: break-word;
        height: auto;
    }
    .input-lien{
        width:90% ;
    }
    .button-lien{
        
        width:90% ;
    }
    .lien{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}