
body {
    background-color: rgb(233, 240, 242);
}
div{
    border: 5px double rgb(233, 240, 242);
    padding: 10px;
    background-color: rgb(245, 249, 252);
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 10px;


    
}
#p1{
    color: darkslategray;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 100%;
    padding-left: 30px;
    line-height: 1.5;
    
}
p{
    color: darkslategray;
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    font-size: 100%;
}

h1, h2 {
    font-size: 200%;
   color: darkred;
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    text-shadow: 5px 5px 5px rgb(187, 152, 152);

}

h3 {
    text-align: center;
    font-size: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h4 {
    font-size: 100%;
    color: darkred;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    text-shadow: 3px 3px 3px rgb(187, 152, 152);

}


table{
   border: 1px solid black;
   margin: 5px;
   padding: 5px;
   text-align: left;
   background-color: bisque;
   text-decoration: aliceblue;
   


}

#container1{

    width: 1200px;
    height: 300px;
    margin: auto;
    
    padding: 2rem 2rem;
    background: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0,0,0,0.5);
    justify-content: end;

    


}

#container1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#container1 #infor{
    position: relative;
    opacity: 0;
    transform: translate3d(30px, 30px, 30px);
    transition: 1s all;
    border: 0cap;
    background: none;
    
    

}
#container1:hover #infor{
    opacity: 1;
    transform: translateY(0px);


}
#container1 #infor h4{
    margin: 0;
    font-size: 120%;
    color: darkred;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    text-shadow: rgb(240, 221, 221); 
}
#container1 #infor ol{
    letter-spacing: 1px;
    font-size: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    color: rgb(18, 20, 20);
    font-family: Georgia, 'Times New Roman', Times, serif;

}



#container{
    display: flex;
    margin: 10px;
    padding: 0px;
    justify-content: center;
    align-items: center;
    min-height: 10px;
    border: 0cap;
  

}
#container div{
    height: 400px;
    width: 335px;
    background: #fff;
    padding-top: 10px;
    margin: 30px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 7px 10px rgba(0,0,0,0.5);
    
}
#more{
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0,0,0,0.5);
    transition: 0.5s ease-in-out;
    border-radius: 5%;
    border: double 4px #fff;
}

#more:hover{
    transform: translateY(20px);
}
#more ::before{
    color: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block ;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,176,155,0.5), rgba(0,210,61,1));
    z-index: 2;
    transition: 0.5s all;
    opacity: 0;
} 
#more:hover ::before{
    opacity: 1;
}
#wrapper{
    display: flex;
    margin: 10px;
    padding: 0px;
    justify-content: space-around;
    border: 0cap;
}
#card{
    width: 220px;
    height: 360px;
    padding: 2rem 1rem;
    background: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 7px 10px rgba(0,0,0,0.5);
    transition: 0.5s ease-in-out;


}
#card:hover{
    transform: translateY(20px);
}
#card::before{
    color: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block ;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,176,155,0.5), rgba(0,210,61,1));
    z-index: 2;
    transition: 0.5s all;
    opacity: 0;


}
#card:hover::before{
    opacity: 1;

}
#card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}
#card #info{
    position: relative;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s all;
}
#card:hover #info{
    opacity: 1;
    transform: translateY(0px);

}
#card #info h3{
    margin: 0;
    font-size: 90%;
    color: rgb(69, 2, 2);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    text-shadow: rgb(240, 221, 221); 
}
#card #info p{
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 20px;
}