body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #E6E6FA; /* Lavender background for a light peacock vibe */
    color: #063852; /* Dark peacock blue for text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.text-container h1,
.text-container h2 {
    margin: 0;
    padding-right: 10px;
}

.text-container h1 {
    font-size: 2em;
}

.text-container h2 {
    font-size: 1.5em;
    color: #4B0082;
}

.profile-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between the sections */
    justify-content: space-around; /* Distributes remaining space around items */
    align-items: flex-start; /* Aligns items to the start of the flex container */
    margin-top: 20px;
}

section {
    flex: 1 1 300px; /* grow | shrink | basis */
    min-width: 300px; /* Ensures minimum width */
    margin-left: 20px;
}

h3 {
    color: #4B0082;
    font-size: 1.5em;
}

.activities a, .social-links a {
    display: block;
    margin-bottom: 10px;
    color: #4B0082;  /* Indigo for links */
    text-decoration: none;
    font-size: 1.2em;
}

.activities a:hover, .social-links a:hover {
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
}

.tagline {
    font-style: italic;
    color: #4B0082;
    font-size: 1em;
}
