.title {
    font-size: 72px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-family: 'Amatic SC', cursive;
}

.info {
    font-size: 30px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
} 

section {
    margin: 10px 10%;
    display: flex;
    flex-direction: column;
    color: rgb(54, 37, 5);
}

.cell {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.text {
    width: 50%;
    margin-bottom: 15px;
}

.cell img{
    max-width: 50%;
    max-height: 50%;
    margin: 5px;
    border-radius: 10px;
}

.images {
    width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 5px;
    grid-template-areas:
    "img1 img2"
    "img3 img4";
}
.images img {
    max-width: 100%;
    max-height: auto;

}

.fading-images {
    position: relative;
    width: 45%;
    height: 350px;
    margin: 0;
}
  
.fading-images img {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    left:0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}
.transparent {
    opacity: 0;
}

@media screen and (max-width:768px){
    .cell {
        flex-direction: column;
    }
    
    .text {
        width: 100%;
    }
    
    .cell img {
        min-width: 100%;
        max-width: 100%;
    }

    .images {
        min-width: 100%;
        max-width: 100%;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .fading-images {
        width: 100%;
        height: 200px;
    }
    
}