.body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(43, 0, 0);
}

.section_profile {
    position: relative;
    width: 800px;
    height: 400px;
    border-radius: 50px;
    border: 10px solid rgb(13, 13, 13);
}

.banner_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.overlay {
    position: absolute;
    background-color: rgba(0 0 0 / 0.6);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 40px;
}

.profile_avatar_container {
    position: absolute;
    inset: 0 0 0 20px;
    width: 200px;
    height: 200px;
    transform: translateY(50%);
}

.avatar_image {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 5px solid rgb(13, 13, 13);
}

.profile_text {
    position: absolute;
    width: 400px;
    min-height: 100px;
    left: 250px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.profile_username {
    margin-left: 20px;
    font-family: "Saira", sans-serif;
    font-size: 50px;
}

.profile_status {
    margin-left: 20px;
    font-size: 25px;
    font-weight: bold;
}

.profile_text .overlay {
    width: 110%;
    height: 110%;
    z-index: -1;
    background-color: rgba(0 0 0 / 0.3);
    backdrop-filter: blur(5px);
}

.profile_version_field {
    position: absolute;
    width: 100px;
    right: 20px;
    bottom: 5px;
}

.profile_version_field .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0 0 0 / 0.3);
}

.profile_version_text {
    display: block;
    color: #fff;
    font-size: 25px;
    text-align: center;
    text-decoration: underline;
}