body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    margin-top: 30px;
}

h1 {
    font-size: 24px;
    margin: 10px 0;
    color: #FFF;
}

.profile {
    font-size: 16px;
    margin:10px 0 20px 0 ;
    color: #FFF;
}

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 26px;
}

.sns-icon {
    font-size: 24px;
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
}

.sns-icon:hover {
    color: #43b4d3;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #222;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    transition: background-color 0.3s;
}

.link-title {
    font-size: 15px;
}

.link-button:hover {
    background-color: #333;
}

.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 25px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    .link-button {
        font-size: 16px;
        padding: 12px;
    }

    .link-icon {
        width: 35px;
        height: 35px;
    }
}