body {
    background: linear-gradient(135deg, #8a2be2, #4a00e0);
    font-family: Lato, Helvetica, Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
}

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

/* Circular Image Styling */
.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #78c6e0;
    margin-bottom: 15px;
}

h1 {
    font-size: 1.4rem;
    margin: 10px 0 5px 0;
}

p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

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

.link-btn {
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.link-btn:hover {
    background-color: #a7e9ff;
    color: #4a00e0;
    transform: translateY(-2px);
}
