body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: auto; 
    position: relative;
    background: #ffffff;
    color: #111111;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    filter: blur(8px);
    transform: scale(1.1);
}

.content {
    position: relative;
    z-index: 1;
    color: #111111; 
    text-align: center;
    padding: 20px;
    background-color: transparent;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-top: 50px;
    overflow-y: auto;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: none;
    color: #0b0b0b;
    order: -1;
}

p {
    font-size: 1.5em;
    text-shadow: none;
    color: #222222;
}

.social-links {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    z-index: 2; 
    margin: 0;
    padding: 0;
    pointer-events: auto;
}

.social-button {
    min-width: 180px;
    justify-content: center;

    background: rgba(0,0,0,0.03);
    color: #111111;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: none;
}

.social-button:hover {
    background: rgba(0,0,0,0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.social-button:active {
    transform: translateY(0);
}

.social-button .social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.social-button .social-label {
    display: inline-block;
    font-size: 0.95rem;
    line-height: 1;
}

.social-icon {
    transition: transform 0.18s;
}

.social-button:hover .social-icon {
    transform: scale(1.05);
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #111111; 
    margin-bottom: 20px;
}