body {
    font-family: "Bree Serif", serif;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background: #786eb7;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 2rem;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

h1 {
    margin-top: 1rem;
    font-weight: 600;
}

.links {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.links li {
    margin-bottom: 0.75rem;
}

.links a {
    display: block;
    padding: 1rem;
    background: #00000030;
    color: white;
    text-decoration: none;
    border-radius: 1000px;
    transition: background 0.3s ease;
}

.links a:hover {
    background: #00000080;
}

.background-image {
    position: fixed;
    z-index: -1;
}

.background-image img {
    object-fit: cover;
    min-height: 101vh;
    min-width: 101vw;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff80;
}
