.banner > img {
    width: 100%;
    height: auto;
}

.intro-container {
    width: 100%;
    min-height: 750px;
    height: auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paragraph-container {
    height: fit-content;
    width: 300px;
    min-height: 500px;
    flex-wrap: wrap;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    transform: translate(50px, 80px);
    background-color: rgb(232, 232, 232);
}

#filler-img {
    width: 350px;
    height: 600px;
    background-color: rgb(105, 105, 105);
}

#filler-img > img {
    width: 100%;
    height: auto;
}

.experience-container {
    background-color: #fffee7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.experience-wrapper {
    text-align: start;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 200%;
    color: #685b3c;
}

.experience-wrapper > h3 {
    font-weight: 900;
}

/* Tablets */
@media (max-width: 600px) {
    
    .intro-container {
        flex-direction: column;
    }

    .paragraph-container {
        
    transform: translate(0px, 0px);
    }
    
    #filler-img {
        width: 250px;
        height: 429px;
        border-top: 5%;
    }  

    .experience-container {
        padding: 20px;
    }
}