.welcome-text {
    font-size: 35px;
    text-align: center;
}

.welcome-description {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}


.workshop-info-and-picture {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.workshop-info-and-picture:nth-child(1) {
    flex: 2 0 70%;
    justify-content: center;
}

.workshop-info-and-picture:nth-child(2) {
    flex: 1 0 30%;
}



/* Flex text & icon */

.text-with-icon {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.text-with-icon:nth-child(1) {
    flex: 0 1 auto;
}

.text-with-icon:nth-child(2) {
    flex: 1 0 70%;
}


.service-type-icon {
    max-width: 10vw;
    min-width: 45px;
    margin: 0 5px 0 5px;
    max-height: 50px;
}


.workshop-picture {
    max-width: 35vw;
    min-width: 150px;
    border-radius: 10px;
}

/* SMALL SCREEN ADJUSTMENTS */

@media (max-width: 800px) {
    .welcome-text {
        font-size: 26px;
        padding: 5px;
    }
}

@media (max-width: 500px) {

    .workshop-info-and-picture {
        flex-flow: row wrap;
    }
}