*{
    margin: 0;
    padding: 0;
    font-family:'Poppins', sans-serif;
}
.body{
    overflow: hidden;
    background-color: rgb(156, 168, 179);

}
#logo{
    width: 170px;
    transition:all;
    transition-duration: 1s;
}
#logo:hover{
    width: 170px;
    height: 170px;
    border-radius: 50%;
  
}


.header{
    background-color: rgb(242, 247, 247);
}
.main{
    background-color: rgb(252, 250, 250);
}
.footer{
    background-color: navajowhite;
}
.navbar ul {
    display: flex;
    justify-content: space-around;
    align-items: center;

}
.navbar img{
    width: 99vw;
    /* margin-left: 10px; */
    
}

.navbar {
    position: sticky;
    top: 0;
    background: rgb(245, 247, 245);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



@media(max-width:500px) {


.cards{
    margin: 20px;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px;
    background-color: aliceblue;

}

.card{
    width: 300px;
    height: 375px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    transition: all;
    cursor: pointer;
}
.card img{
    width: 270px;
    height: 205px;
    background-color: rgb(243, 241, 238);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    transition: all;
    cursor: pointer;
}

}

@media (min-width:500px){
.cards{
    margin: 20px;
    display: flex;
    justify-content: space-around;


}
.card{
    width: 600px;
    height: 475px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin-top: 50px;
    transition: all;
    cursor: pointer;
}
.card img{
    width: 500px;
    height: 350px;
    background-color: rgb(243, 241, 238);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    transition: all;
    cursor: pointer;
}

}

.card:hover{
    box-shadow: 5px 5px 5px;
    transition-duration: 500ms;
}
.h{
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg{
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer{
    /* height: 100px; */
    background-color: rgb(218, 213, 213);
    display: flex;
    justify-content: space-around;
   
}
.footer ul li{
     text-decoration: none;
}
.navbar ul li{
    margin: 10px;
    padding: 10px;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}


.fade-in {
    animation: fadeIn 1s ease-in forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
