.introduction {
    position: relative;
    display: flex;
    padding: 9em 14em;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #1B253E;
}

.introduction-container {
    display: flex;
    flex-direction: column;
    background-color: #dfedf6;
}

/* Portrait */

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.15);
}

.image-container {
    position: relative;
    max-width: 300px;
    min-width: 250px;
    max-height: 300px;
    margin-right: 2.5em;
    display: block;
    width: auto;
    height: auto;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: rotate(-7deg);
}

/* Etoiles */

.star-container {
    transition: transform 0.3s ease-in-out;
    position: absolute;
    width: 30%;
    margin: 0;
    padding: 0;
}

.bottom-star {
    transform: translate(40%, 50%)  rotate(15deg);
    bottom: 0;
    right: 0;
}

.bottom-star:hover {
    transform: translate(40%, 50%) rotate(40deg);
}

.top-star {
    transform: translate(-40%, -40%) rotate(5deg);
    top: 0;
    left: 0;
}

.top-star:hover {
    transform: translate(-40%, -40%) rotate(40deg);
}

/* Texte */

.introduction h1 {
    font-size: 2.8em;
    font-weight: 700;
}

.introduction h2 {
    font-size: 1.8em;
    font-weight: 400;
}

.introduction p {
    font-size: 1.2em;
    font-weight: 300;
    margin-top: 0.5em;
	padding-bottom: 0em;
}

.discover-cta {
    cursor: pointer;
    user-select: none;
    align-self: center;
    transition: transform 0.3s ease;
    margin-bottom: -2em;
}

.discover-cta img {
    height: 4em;
}

.discover-cta:hover {
    transform: scale(1.05);
}

.social-link {
    text-decoration: none;
    color: #88939a;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1B253E;
}

@media (max-width: 1200px) {
    .introduction {
        padding: 6em 8em;
    }
}

@media (max-width: 1100px) {
    .introduction {
        padding: 5em 7em;
    }
}

@media (max-width: 900px) {
    .introduction {
        display: flex;
        flex-direction: column;
        padding: 4em;
    }

    .image-container {
        margin-right: 5em;
		margin-left: 5em;
        margin-bottom : 2em;
        min-width: 200px;
    }
	
    .star-container {
        display: none;
    }
}

@media (max-width: 700px) {
    .star-container {
        display: none;
    }
}

@media (max-width: 500px) {
    .discover-cta img {
        height: 2.8em;
    }

    .introduction {
        padding: 2em;
    }
}