body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    overflow: hidden;
    position: relative;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.profile {
    text-align: center;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    margin-bottom: 20px;
    object-fit: cover;
}

.profile h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

.profile p {
    font-size: 1.2em;
}

.profile a {
    color: #f0f0f0;
    text-decoration: none;
}

.linkedin-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #f0f0f0;
    text-decoration: none;
    border: 2px solid #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.linkedin-link:hover {
    background-color: #f0f0f0;
    color: #1a1a1a;
}