html, body {
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: #bac7ff;
}

header {
    height: 90px;
    background-image: url("a.jpg");
    background-size: cover;
    background-position: top;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(320deg, #eb92be, #ffef78, #63c9b4);
    z-index: 1;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: url("a.jpg") no-repeat center/cover;
    border: 4px solid #bac7ff;
    margin-left: 25px;
    margin-top: 25px;
    position: absolute;
    z-index: 2;
}

.container{
    display: flex;
    justify-content: center;
    align-items: flex;
}

.profile {
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    padding: 20px;
    margin: 20px;
    margin-top: 20px;
    width: 100%;
}

.title {
    font-size: x-large;
    background-image: linear-gradient(135deg, #2193b0, #6dd5ed);
    color: transparent;
    background-clip: text;
}

.content {
    font-size: medium;
    font-weight: 700;
    color: #1a2a3a;
}

hr{
    border: none;
    height: 2px;
    background: linear-gradient(135deg, #3be9da, #3b75f1);
    margin: 5px 0;
    border-radius: 2px;
}

hr.short{
    border: none;
    height: 2px;
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    margin: 5px 0;
    border-radius: 5;
    width: 200px;
}

.name {
    display: inline-block;
    padding: 0px 20px;
    margin-left: 140px;
    background: none;
    text-align: center;
}

.name_u {
    font-size: 40px;
    font-weight: 700;
    background-image: linear-gradient(135deg, #2193b0, #6dd5ed);
    color: transparent;
    background-clip: text;
}

.github-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("github.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    margin: 2px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.github-btn:hover {
    transform: scale(0.9);
}