.container {
    display: flex;
    justify-content: center;
}

.card {
    margin: 10% auto;
    background-color: #10101060; 
    border-radius: 15px;
    box-shadow: 0 0 20px #b9b9b94d;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    width: 450px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;

    transition: backdrop-filter 0.3s ease; 
}

.profile-card {

    overflow: hidden;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 20px;
}

.profile-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.socials-buttons {
    margin-left: 5px;
    display: flex;
    flex-direction:row;

    gap:7px;
}


.socials-buttons img{
    height: 25px;

    opacity: 0.9;
    transition: 0.3s ease;
}

.socials-buttons img:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}

.img-content img {
    height: 75px;
    width: 75px;

    border-radius: 12px;
    box-shadow: 0 0 10px #b9b9b9;

    object-fit: cover;
}

.pfp-wrapper {
    position: relative;
    display: inline-block;
}

.pfp-wrapper img {
    display: block;
    height: 75px;
    width: 75px;

    border-radius: 12px;
    box-shadow: 0 0 10px #b9b9b9;

    object-fit: cover;
}


.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    flex: 1; 
    gap: 17px;

    line-height: 1.2;
    text-align: left;
}

.progress-bar-section {
    height: 5px;
    width: 100%;
    background-color: #2a2a2a;
    border-radius: 5px;
    overflow: hidden;
}


.separator {
    margin: 0px;
    border-top: 1px solid #2a2a2a;
}



#progress-bar {
    height: 100%;
    width: 0%;
    background-color: #6e55ff;
    border-radius: 5px;
    transition: width 0.3s linear;
}

#background {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}