*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: url(../ressources/bg-sunset.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card{
    width: 90%;
    max-width: 440px;
    color: aliceblue;
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    backdrop-filter: blur(3px);
}
.card img{
    width: 150px;
    border-radius: 50%;
}
.card h2{
    font-size: 40px;
    font-weight: bold;
    margin-top: 25px;
}
.card p{
    font-size: 18px;
    margin: 10px auto;
    max-width: 330px;
}
.card .network img{
    width: 40px;
    border-radius: 50%;
    transition: background 0.5s;
}
.card .network img:hover{
    background:rgb(0, 0, 0);
}
.card .network a {
    display: inline-block;
    padding: 8px;
}
.mail{
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 25px;
}
.footer{
    background-color: black;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}