#presentation {
    min-height: 80vh;
    height: 80vh;
    margin-bottom: 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 8vw;
    gap: 3em;
    text-align: left;
    box-sizing: border-box;
    position: relative;
}

.presentation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    height: auto;
}

#presentation h2 {
    top: -100%;
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    position: absolute;
    width: auto;
}

#presentation p {
    font-size: 1.3em;
    color: #aaaaaa;
    margin: 0 0 1.5em 0;
    text-align: left;
    max-width: 35em;
}

#presentation img {
    flex: 0 0 320px;
    max-width: 15vw;
    width: 620px;
    height: auto;
    border-radius: 10em;
    margin: 0;
    display: block;
}

