* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


h1 {
    position: relative;
    text-align: center;
    width: max-content;

}

h1::after {
    content: '';
    background-color: red;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    
    bottom: 0;


}

.container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;

}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;


}


.gallery img {
    width: 100%;
    border-radius: 5px;
    color: bisque;

}

.gallery img :hover {
    animation-duration: inherit;
}