@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: url(img/bg3.png);
    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.3);
    background: rgba(87, 87, 215, 0.266);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}
/*image profil css*/

.profil{
    width: 150px;
    border-radius: 50%;
}
/* text css*/

.card h2{
    font-size: 50px;
    font-weight: 600px;
    margin-top: 20px;
}
.card p{
    font-size: 20px;
    margin: 10px auto;
    max-width: 330px;
}
/*social media css*/
.card .social-media img{
    width: 40px;
    border-radius: 50%;
    margin: 10px 5px;
    transition: all 0.5s ease-out;
}
.card .social-media img:hover{
    background: rgba(3, 14, 120, 0.573);
}

.button{
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    background: #fff;
    color: #0a0428;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 0 10px ;
}