body {
    margin: 0;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, #6f1682 0%, #ff9a9e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile-container {
    text-align: center;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border: 2px solid #0b0b0b;
}

.profile-header {
    margin-bottom: 25px;
}

.profile-pic {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid #b71988;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 26px;
    margin: 10px 0;
    color: #b71988;
}

p {
    color: #666666;
    margin-bottom: 25px;
}

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

.profile-link {
    display: block;
    padding: 12px;
    text-decoration: none;
    background-color: #ff69b4;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-link:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.profile-emphasis-link{
    display: block;
    padding: 12px;
    text-decoration: none;
    background-color: #b642cd;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-emphasis-link:hover {
    background-color: #992bbe;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 600px) {
    .profile-container {
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .profile-container {
        max-width: 500px;
    }
}

@media (min-width: 992px) {
    .profile-container {
        max-width: 600px;
    }
}