*{
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

/*------BoD------*/
.sh {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    background-image: linear-gradient(340deg, rgba(8, 4, 63, 0.74), rgba(80, 57, 7, 0.74)), url("../images/cumberland-min.jpg");
    background-position: center;
    background-size: cover;
    color: white;
}

.sh-col {
    flex-basis: 30%;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    align-items: center;

}

.sh-col img {
    width: 80px;
    height: 100px;

}

.box2 {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
    margin-left: 15%;
    margin-right: 15%;
    padding: 20px;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s;
}

.layer:hover {
    background: rgba(100, 100, 100, 0.7);
}

.layer h3 {
    width: 100%;
    font-weight: 500;
    color: black;
    font-size: 25px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3 {
    bottom: 39%;
    opacity: 1;

}

/* Media query for mobile view */
@media (max-width: 768px) {
    .layer h3{
        font-size:15px;
    }
}

/*------Copyright------*/
.copyright{
    width: 100%;
    border-top: 1px solid gray;
    background-color: black;
    color: white;
    text-align: center;
    padding: 0.5% 0;
}