/* style.css */
body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: white;
}

.profile-container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    width: 600px;
}

.profile-header img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin: 50px 0 0 0;
}

.profile-header h1 {
    font-size: 2.4em;
    margin: 50px 0 25px 0;
}

.profile-header p {
    font-size: 1.2em;
    color: #666;
    margin: 0 50px 50px 50px;
}

.social-links {
    margin-bottom: 75px;
}

.social-links .link {
    margin: 0 12px;
    display: inline-block;
    color: #333;
    font-size: 1.5em;
    position: relative;
}

.social-links .link:hover {
    color: #4b0082;
}

/* Tooltip styles */
.social-links .link::before {
    content: attr(data-title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    font-size: 0.5em;
    pointer-events: none;
}

.social-links .link:hover::before {
    opacity: 1;
    visibility: visible;
}

.profile-nav {
    margin: 20px;
    color: #4b0082;
    text-decoration: none;
    font-size: 1.4em;
}

.profile-nav a:hover {
    color: black;
}

.separator {
    height: 1px;
    background-color: #ddd;
    margin: 50px 100px 0 100px;
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    background-color: white;
}

.profile-nav a {
    margin: 20px;
    color: #4b0082;
    text-decoration: none;
    font-size: 1.1em;
}

footer p {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 25px;
    margin-bottom: 5px;
}

/* Styles for the About page */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #4b0082;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.about-content ul {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    list-style-type: disc;
    padding-left: 20px;
}

.back-link {
    display: inline-block;
    color: #4b0082;
    text-decoration: none;
    font-size: 2em;
    position: relative;
}

.back-link i {
    margin-left: 750px;
}

.back-link:hover {
    color: black;
}

footer p {
    font-size: 0.8em;
    color: #aaa;
    text-align: center;
}
