#shots {
    display: flex;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: auto;
}
#shots .shot {
    position: relative;
    display: block;
    width: 50%;
    background: #100f2e;
    color: white;
    text-decoration: none;
    padding: 1%;
}
@media screen and (min-width: 240px) and (max-width: 812px) {
    #shots .shot {
        width: 100%;
    }
    #shots .shot .title {
        font-size: 1rem !important;
        font-weight: 500;
    }
    #shots .shot img {
        border-radius: 13px;
    }
}
#shots .shot:hover img {
    opacity: 0.25;
}
#shots .shot:hover .title {
    opacity: 1;
}
#shots .shot .title {
    position: absolute;
    width: calc(100% - 2rem);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}
#shots .shot img {
    display: block;
    max-width: 100%;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}