*{
    box-sizing: border-box;
}

#videoBg {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

#wrapper{
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

#profile-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background-color: rgba(24, 25, 28, 0.9);
    border-radius: 8px;
    overflow: auto;
}

#pfp-img{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(41, 43, 47, 0.5);
    margin: 18px;
}

#name{
    font-family: "Inter";
    font-size: 20px;
    color: #fff;
}

#description{
    font-family: "Inter";
    font-size: 14px;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.8)
}

#texts{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

#location-icon{
    width: 14px;
    height: 14px;
    margin-right: 4px;
    color: #fff;
}

.bio-title{
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 12px;
}

.bio-icon{
    margin-right: 8px;
    width: 17px;
    height: 17px;
}

#location{
    display: flex;
    align-items: center;
    margin-top: 14px;
    font-family: "Inter";
    font-size: 13px;
    color: #fff;
    transform: translateX(-2px);
}

#basic-info{
    height: 100px;
    display: flex;
    margin-top: 8px;
}

#bios{
    display: flex;
}

#personal-bio{
    margin-left: 20px;
    margin-right: 10px;
}

#developer-bio{
    margin-left: 10px;
    margin-right: 20px;
}

.bio{
    padding: 12px;
    width: 370px;
    height: 165px;
    border-radius: 8px;
    background-color: rgba(41, 43, 47, 0.5);
    font-family: "Inter";
    font-size: 14px;
    border-bottom: 1px solid #000;
    margin-top: 20px;
}

.item{
    margin-bottom: 6px;
}

#category{
    color: rgba(255, 255, 255, 0.6)
}

#desc{
    color: rgba(255, 255, 255, 0.8)
}

#socials{
    margin: 20px;
    margin-bottom: 0;
    display: flex;
}

.social-btn{
    position: relative;
    display: flex;
    padding: 8px;
    background-color: rgba(41, 43, 47, 0.5);
    outline: none;
    border: 0;
    font-size: 14px;
    color: #ffffff;
    font-family: "Inter";
    cursor: pointer;
    border-radius: 4px;
    width: 240px;
    border-bottom: 1px solid #000;
}

.social-icon{
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.arrow{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 6px;
}

#discord-btn, #gh-btn{
    margin-right: 20px;
}

#footer{
    margin: 20px;
    margin-top: 15px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Inter";
    font-size: 10px;
}

#footer a{
    color: rgba(255, 255, 255, 0.6);   
}

@media screen and (max-width: 850px) {
    #profile-container{
        width: 700px;
    }
}

@media screen and (max-width: 750px) {
    #profile-container{
        width: 340px;
        height: 600px;
    }
    #bios{
        flex-direction: column;
    }
    #developer-bio, #personal-bio{
        margin-left: 20px;
        margin-right: 20px;
    }
    .bio{
        height: 162px;
        width: 300px;
    }
    #socials{
        margin-top: 10px;
        flex-direction: column;
    }
    .social-btn{
        width: 300px;
    }
    #personal-bio{
        margin-top: 15px;
    }
    #developer-bio{
        margin-top: 10px;
    }
    #gh-btn, #tg-btn{
        margin-top: 7px;
    }
    #footer{
        display: none;
    }
}
