/* include the CSS file with the Solarized colours */
@import url("solarized.css");

/* Introduction section */
#introduction {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-bottom: 2rem;
    padding: 1rem;
}

.intro-title {
    text-align: center;
    margin-bottom: 1rem;
}

.intro-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-photo-container {
    display: flex;
    justify-content: center;
}

.intro-photo {
    width: 200px;
    height: auto;
    border-radius: 10%;
    object-fit: cover;
}

.intro-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

/* on mobile, put the image above the text */
@media screen and (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    .intro-photo-container {
        margin-bottom: 1rem;
    }
}