* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    user-select: none; /* Prevent text selection */
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative; /* Make the body relative for absolute positioning of the IP */
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: 20px;
}

header {
    margin-bottom: 20px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px 44px;
}

.link-button {
    display: block;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
}

.social-links a:hover {
    color: #0056b3;
}

/* Style for displaying IP address in top-right corner */
.ip-address {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border: 1px solid #ccc;
}
