.container{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-top: 1%;
}

.back{
    position: fixed;
    right: 45%;
}


.images{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 0 1% 1% 1%;
    overflow: hidden;
    animation: come-down .9s linear;
}
.images img{
    flex: 1 1 auto;
    width: 45%;
    margin: 2%;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.ctext{
    padding: 2%;
    width: 70%;
    border-radius: 25px;
    /* box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px; */
}
.text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fade .9s linear;
}
.text h1{
    margin-bottom: 1%;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.text p{
    font-size: 16px;
    margin-bottom: 2%;
    width: 70%;
    text-align: center;
    width: 100%;
    font-weight: 400;
}

@media screen and (max-width: 950px) {
    .images img{
        width: 100%;
        margin: 2% 0;
    }
    
    .ctext{
        width: 100%
    }
    .text h1{
        font-size: 24px;
    }
    .text p{
        width: 90%;
        font-size: 16px;
    }
}

@media screen and (max-width: 800px){
    .images img{
        width: 100%;
        margin: 2% 0;
    }
    .ctext{
        width: 100%
    }
    .text h1{
        font-size: 18px;
    }
    .text p{
        font-size: 14px;
    }
}

@media screen and (max-width: 500px){
    .images img{
        width: 100%;
        margin: 2% 0;
    }
    .ctext{
        width: 100%
    }
    .text h1{
        font-size: 18px;
    }
    .text p{
        font-size: 10px;
    }
}

@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }    
}

@keyframes come-down{
    0%{
        translate: 0 -2%;
        opacity: 0;
    }
    100%{
        translate: 0 0;
        opacity: 1;
    }
}