* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background-color: rgb(240, 240, 240);
}

.imageGallery {
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    grid-gap: 30px;
}

.imageGallery img {
    width: 100%;
    height: 400px;
    cursor: pointer;
}

.imageGallery img:hover {
    transform: scale(1.2) rotate3d(1, 1, 1, 5deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
    transition: transform 0.3s ease-in-out;
}

h1 {
    text-decoration: underline;
    margin: 100px;
    font-size: 40px;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.fullImageClass {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    /* z-index: 100; */
}

.fullImageClass img {
    width: fit-content;
    max-width: 700px;
    height: max-content;
    border-radius: 20px;
    border: 2px solid white;
}

.fullImageClass span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}