.title {
    font-size: 30px;
    font-weight: bold;
    margin: 10px;
    text-align: center;
    color: white;
}

.gallery {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-top: 15px;
    padding-bottom: 30px;
}

.gallery-item {
    margin: 15px;
    transition: 1s;
    border-radius: 15px;
}

.gallery-item:hover {
    transform: scale(1.3);
    z-index: 1;
}

.gallery-focus {
    width: auto;
    height: auto;
}

.gallery-image {
    width: 300px;
    height: 300px;
    border: rgb(255, 0, 0) 3px solid;
    border-radius: 5px;
    object-fit: cover;
    /* show tooltip on hover */
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .gallery-image {
        width: 150px;
        height: 225px;
    }

    iframe {
        display: none;
    }
}

.read {
    text-align: center;
    margin: auto;
    height: 500px;
    width: 45%;
    background-color: #636262;
    border-radius: 15px;
    padding: 25px;
}