@import
url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    padding: 0;
    margin: 0;
    background-color: #262626;
    color: white;
}

h1 {
    text-align: center;
    font-size: 60px;
    font-family: 'Open Sans', sans-serif;
}

.imgcont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 800;
}

.imgch {
    width:100%;
}

.imgch img {
    width: 100%;
}
@media all and (min-width: 800px) {
    .imgcont {
        flex-direction: row;
    }
    .imgch {
        margin: 10px;
    }
}


@media all and (min-width: 600px) {
    .imgcont {
        max-width: 80%;
        margin-left:20px;
    }
}

article {
    font-size: 20px;
   margin-left: 10px;
   font-family: 'Open Sans', sans-serif;
}

footer {
    width: 100%;
    margin: 50px 0 0 0;
    border-top: 2px solid #5a5a5a;
}

.fotcont {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.itm {
    display: flex;
}

.child {
    padding: 10px;
}
.child img {
    width: 20px;
    height: 20px;
}

@media all and (min-width: 532px) {
    .fotcont {
        flex-direction: row;
    }
}

/* animation */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.imgch.hidden {
    opacity: 0;
    filter: blur(5px);
    transform:scale(100%);
    transition: all 2s;
}

.imgch.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
article .hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}
article .show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
