body {}

.content-warpper {
    height: clamp(600px, 125vh, 100vh);
    align-items: center;
    margin: 0;
    text-align: center;
    background-color: #f5f4f9;
    border-radius: clamp(10px, 3vw, 100px);
    overflow-y: auto;
    box-sizing: border-box;
}

.bg-blur-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('https://bio.linkcdn.cc/upload/2025022412/174039870589553318.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: multiply;
    background-color: rgba(255, 255, 255, 0.8);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

div {
    align-items: center;
    justify-items: center;
}

.username {
    display: flex;
    font-size: clamp(30px, 5vw, 150px);
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    margin-top: 20%;
    font-family: "Noto Sans Thai"
}

p {
    padding: 0px;
    margin: 0px;
}

.profile {
    position: relative;
    border-radius: 50%;
    max-width: 30%;
    height: auto;
    top: 100%;
    transform: translate(0%, 50%);
    margin: 10% 0% 0% 0%;
    border: clamp(7px, 2vw, 100px) solid white;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.2);
}

.verify {
    max-width: clamp(25px, 5vw, 60px);
    max-height: auto;
    margin: clamp(10px, 3vw, 25px);
}

.bg-profile {
    background-image: url('https://bio.linkcdn.cc/upload/2025022412/174039870589553318.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

a {
    display: inline;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    text-decoration: none;
    vertical-align: middle;
    color: white;
}

.fb,
.ig,
.git,
.dis {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fb {
    animation-delay: 0.1s;
}

.ig {
    animation-delay: 0.2s;
}

.git {
    animation-delay: 0.3s;
}

.dis {
    animation-delay: 0.4s;
}

.fb,
.ig,
.git,
.dis {
    font-weight: bold;
    font-family: 'Prompt', sans-serif;
    border-radius: 10px;
    text-decoration: none;
    margin: 10px;
    justify-content: flex-start;
    padding: clamp(10px, 3vw, 35px);
    margin: clamp(20px, 3vw, 45px);
    width: clamp(300px, 60vw, 700px);
    padding: clamp(15px, 4vw, 35px);
    font-size: clamp(18px, 3.5vw, 50px);
    border-radius: clamp(10px, 2vw, 30px);
    transition: all 0.3s ease;
}

.fb::after,
.ig::after,
.git::after,
.dis::after {
    content: "";
    position: absolute;
    inset: 0;
    filter: blur(15px);
    width: 95%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
}

.fb::after {
    background: #1877f2;
}

.ig::after {
    background: linear-gradient(to bottom right, #fadf1d, #fd3283, #741ccc);
}

.git::after {
    background: #040404;
}

.dis::after {
    background: #5865f1;
}

.fb:hover::after,
.ig:hover::after,
.git:hover::after,
.dis:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.fb {
    background-color: #1877f2;
}

.ig {
    background: linear-gradient(to bottom right, #fadf1d, #fd3283, #741ccc);
}

.git {
    background-color: #040404;
}

.dis {
    background-color: #5865f1;
}

.logo {
    height: clamp(18px, 5vw, 50px);
    display: inline;
    filter: invert(100%) brightness(100%);
    vertical-align: middle;
}

#desktop-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
}

@media screen and (min-width: 1025px) {
    .content-warpper {
        height: clamp(1500px, 40vh, 400px);
        max-width: clamp(600px, 75vw, 1000px);
        align-items: center;
        margin: 0 auto;
        text-align: center;
        background-color: #f5f4f9;
        padding: 10px 20px 10px 20px;
        transform: scale(0.8);
        transform-origin: top center;
    }