.TitelOfWorkshop {
    display: grid;
    gap: 10px;
    width: 90%;
    margin: 10px auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#workshopTitle {
    margin: 30px auto;
    grid-row: 1 / 2;
    grid-column: 1 / 5;
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 1px;
}

#workshopImage {
    object-fit: cover;
    max-width: 500px;
    max-height: 800px;
    width: inherit;
    grid-column: 1 / 3;
    margin: 0 auto;
    grid-row: 2 / 3;
    border-radius: 50px;
}

#workshopInfo {
    width: inherit;
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    font-size: 1.2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.childs {
    width: 90%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    gap: 40px;
}

#childImage {
    margin: 0 auto;
    max-width: 90%;
    max-height: 80vh;
    width: fit-content;
    height: fit-content;
    object-fit: cover;
    border-radius: 50px;
}

#childInfo {
    width: 95%;
    margin: 0 auto;
    font-size: 1rem;
    letter-spacing: 1px;
}


@media (min-width: 801px) and (max-width: 1200px) {
    .TitelOfWorkshop {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }


}

@media (max-width: 1000px) {
    p {
      font-size:3rem;  
    }
    .TitelOfWorkshop {
        grid-template-columns: 1fr;
    }

    #workshopTitle {
        grid-column: 1 / 2;
        grid-row: 1/2;
    }

    #workshopImage {
        max-width: 90%;
        max-height: 1000px;
        grid-column: 1 / 2;
        grid-row: 3/4;
    }

    #workshopInfo {
        width: inherit;
        grid-column: 1/2;
        grid-row: 2/3;
        font-size: 1.45rem;
    }
    #childInfo{
        font-size: 1.25rem;
    }
}
