body {
    font-family: "Open Sans", sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background: linear-gradient(180deg, #a88efc 1%, #efb8d3 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 15px;
}

.initials {
    font-size: 70px;
    font-family: "Luxurious Script", sans-serif;
}

.profile {
    margin-bottom: 20px;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.name {
    font-family: "Noto Serif Display", sans-serif;
    font-size: 48px;
    margin: 10px 0;
    color: #090909;
}

p {
    font-size: 14px;
    color: #555;
}

.links {
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: background 0.3s, border 0.3s;
}

.link img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.link:hover {
    background: #f0f0f0;
    border: 2px solid #ccc;
}