body {
    margin: 0px;
	margin-top: 100px;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    display: flex;
    justify-content: center;

    min-height: 100vh;
}

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

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.username {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-desc {
    font-size: 12px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.email-subscribe {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.email-subscribe input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    width: 70%;
    outline: none;
}

.email-subscribe button {
    padding: 10px;
    font-size: 14px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-button {
    display: block;
    padding: 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.footer {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}