body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    position: relative;
    height: 100%;
}

#blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    filter: blur(10px);
    z-index: -1;
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

#buttons {
    margin-top: 20px;
}

.social-button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: white;
    border: 2px solid black;
    border-radius: 20px;
    cursor: pointer;
}

.social-button:hover {
    background-color: #f0f0f0;
}
