body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom right, #fbc2eb, #a6c1ee);
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

#image img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-top: 1.7rem;
    border: 2px solid pink;
    background-color: aliceblue;
}
}
.container {
    max-width: 400px;
    padding: 20px;
}

h1 {
    margin-bottom: 10px;
}
p {
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}


.social-icons a {
    text-decoration: none;
    font-size: 24px;
}


/* .social-icons a:hover{
    background-position: 2rem;
} */

.link {
    display: block;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    margin: 10px 0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: 0.3s;
}
.link:hover {
    background: rgba(255, 255, 255, 1);
}