@import url(https://fonts.bunny.net/css?family=amita:700);



h1 {
    color: #000000;
    font-family: Amita;
    margin: 20px auto;
    font-size: 2rem;
    text-align: center;
    
}

img {
    width: 300px;
    height: 450px;
    margin: 10px;
    
    -webkit-filter: sepia(0%);
    filter: sepia(0%);
    transition-duration: 1s;
}

img:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: none;
    filter: none;
}

footer {
    
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    min-width: 100vw;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
