*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #333;
    height: 100vh;
}

h1 {
    color: #f1f1f1;
    text-align: center;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 50px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1300px;
    margin: 70px auto 0;
    /* background: crimson; */
    text-align: center;
    justify-content: center;
}

.item {
    width: 200px;
    height: 150px;
    margin: 10px;
    background: greenyellow;
    overflow: hidden;
    flex-shrink: 0;
    font-size: 30px;
    padding-top: 55px;
    border-radius: 15px;
    box-shadow: 5px 5px 5px black;
    cursor: pointer;
    font-weight: bolder;
    transition: all 0.6s ease-in-out;
}

.item:hover {
    background-color: cornflowerblue;
    color: #fff;
    transform: scale(1.05);
}

a {
    text-decoration: none;
    color: #333;
}