*{
    margin: 0;
    padding: 0;
}
body{
    background-color: black;
}
#navbar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: black;
}
#logo{
    margin-left: 7px;
    margin-top: 7px;
    margin-bottom: 5px;
}
#logo img{
    height: 70px;
    width: 60px;
}
#navbar ul{
    display: flex;
    flex-wrap: wrap;
}
#navbar ul li{
    list-style: none;
    padding: 15px;
    margin-top: 5%;

}
#navbar ul li a{
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: white;
}
#navbar ul li a:hover{
    transform: scale(1.2);
    transition: transform 0.3s ease;
    color: grey;
}

#container1 {
    background-color: black;
    max-width: 100%;
    height: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
#container2{
    background-color: white;
    max-width: 100%;
    height: 25%;
    justify-content: center;
  }
  .col1 {
    width: 18rem;
    margin: 4%;
    background-color: black;
  }
    .card {
    box-shadow:0 0 10px white;
}
.card:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
    box-shadow:0 0 30px white;
  }
  
  
  .col1 img {
    width: 250px;
    height: 300px;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
    padding-top: 10%;
}
h2{
    padding-top: 2%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
}
.last{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.c{
    padding: 2%;
}
.c :hover{
    box-shadow:0 0 20px grey;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.c img{

    width: 50px;
    height: 50px;
}
.lp{
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.smooth-transition {
    transition: all 1s ease-in-out;
}

.smooth-transition:hover {
    opacity: 0.9;
}
