@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SDSamliphopangche_Outline';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts-20-12@1.0/SDSamliphopangche_Outline.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SDSamliphopangche_Basic';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts-20-12@1.0/SDSamliphopangche_Basic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    margin: 0;
    padding: 0;
    font-family: 'GmarketSansMedium';
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height:auto;
}

body{
    font-family: 'GmarketSansMedium';
    background-image: url(img/bg.jpg);
    background-size: 100%; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    margin-top:5%;
    text-align: center;
    width: 550px;
    padding: 30px;
    background-color: #000;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    position: relative;
}

.profile {
    margin-bottom: 20px;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 30px;
    margin: 10px 0;
    color:#fff;
    font-family: 'SDSamliphopangche_Outline'
}

.bio {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.youtube .bio{margin-top:50px;}

.links {
    display: flex;
    flex-direction: column;
    margin-bottom:30px;
    gap: 10px;
}

.link-item {
    display: block;
    padding: 15px;
/*    background-color: #0073e6;*/
background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 25px;
    font-family: SDSamliphopangche_Basic;
    transition: background-color 0.3s;
}

.link-item:hover {
    background-color: #005bb5;
}



@media only screen and (max-width:720px) {
    body{
        background-image: url(img/1-4.png);
        background-size: cover;
        background-position: center;
    }
    
    .container {
    margin-top:5%;
    text-align: center;
    width: 350px;
    padding: 20px;
    background-color: #000;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    position: relative;
}

    .link-item{
        font-size:20px;
        padding: 10px;
    }
}


