body{
    background-color:rgb(99,109,100);
    color:white;
}
#container{
    width:100%;
    position: relative;
    text-align: center;
}
#container img{
    max-width: 80%;
    height:250px;
    width:100%;
    filter: brightness(0.4);
    transition: all 0.4s;
}
#container h1{
    position: absolute;
    top: 10%;
    width: 100%;
    color: rgb(255, 255, 255);
    transition: all 0.4s;
}
#container h4{
    position: absolute;
    top: 25%;
    width: 100%;
    color: rgb(255, 255, 255);
    transition: all 0.4s;
}
#container:hover img{
    filter: brightness(1);
}
#container:hover h1{
    color: rgba(255, 255, 255, 0);
}
#container:hover h4{
    color: rgba(255, 255, 255, 0);
}
.row{
    width:100%;
}
.divid{
    color:black;
    float: left;
    width: calc(33% - 30px);
    padding: 10px;
    list-style-type: none;
    height: 300px;
    box-shadow: 10px 10px 5px #888888;
    background: aliceblue;
    margin: 5px;
    border-radius: 25px;
}
.divid:hover{
    background: rgb(182, 221, 255);
}
button{
    border: 0;
    padding: 15px;
    border-radius: 6px;
    background-color: lightblue;
    box-shadow: #9E9E9E 1px 1px;
}
#block{
    display: inline-block;
    height:30px;
    width:50px;
}