.container {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} 
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(image2.jpg);
    background-size: cover;
}
.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
}
.profile {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    z-index: 1;
}
.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.text {
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}
.text h2 {
    font-size: 24px;
    margin: 0;
}
.text p {
    font-size: 18px;
    margin: 5px 0 0;
}
body {
    margin: 0;
    padding: 0;
}