*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

*,*::before, *::after {
    box-sizing: inherit;
}

body{
    background-color:rgb(188, 197, 194);
    overflow-x: hidden;
}

.container{
    text-align: center;
    background-color: seashell;
    padding: 20px 20px 50px 20px;
    margin: 0 auto;
    width:80%;
    height: auto; 
}

.heading{
    font-size: 26px;
    font-weight: bold;
    background-color: rgb(103, 163, 140);
    border-radius: 0px;
    text-align: center;
    padding:10px;
    color: white;
    text-shadow: #333 1px 1px 2px;
    height: auto;
}

.description{
    margin:10px;
    padding:10px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-align: center;
}

p{
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

span{
    margin: 20px 0px 0px 0px;
    padding: 10px;
    font-size: 24px;
    line-height: 1.5;
    color: #333;
}

.image{  
    width:100%;
    height: 400px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin:auto;
    overflow: hidden;
    /* object-fit: cover;
    width:100%;
    margin: auto; */
    /* border-radius: 10px; */
}

.image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card a:hover{
    color: rgb(58, 58, 189);
}

.card{
    text-align: center;

}
.transition{
    background-color: rgb(121, 169, 150);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    display: inline-block;
    width: 200px;
    text-align: center;
    height: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 2px solid whitesmoke;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;

}
.transition:hover,
.transition:focus-within {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.card div img{
    margin:20px;
    width: 150px;
    height: 150px;
    border-radius: 10%;
    object-fit: cover;
    border: 1px solid white;
}

.card a {
    text-decoration: none;
    /* color: #333; */
    color:rgb(226, 223, 223);
}

.footer {
    /* position: fixed; */
    text-align: center;
    padding: 20px;
    background-color: seashell;
    /* bottom: 0%; */
    height:100px;
    width: 100%;
    margin: 40px 0px 0px 0px;
    overflow: hidden;
}
 
