*
{
    margin: 0%;
    padding: 0%;
}
body
{
    font-family: 'Roboto', sans-serif;
}
nav
{
   display: flex;
   justify-content: space-between;
   background-color: black;
   width: 108%;
   color: orangered;
   padding: 15px;
   margin-left:5px ;
}
.logo
{
    display: flex;
    align-items: center;
}
.searchBar
{
    display: flex;
}
.searchBar input
{
    width: 150px;
    height: 30px;
    padding: 6px;
    font-size: 18px;
    border: none;
    border-radius: 3px;
    margin-inline: 5px;
}
.searchBar button
{
  width: 60px;
  height: 31px;
  background-color: orangered;
  border-radius: 3px;
  font-size: 15px;
  border: none;
} 
@media only screen and (max-width:470px)
{
   nav
   {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
   }
   .searchBar
   {
    display: flex;
    justify-content: center;
   }
   .searchBar
   {
    display: flex;
    justify-content: center;
    margin-top: 8px;
   }
}
.card-container
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.card
{
     width: 325px;
     background-color: black;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
     margin: 20px;
}
.card img{
    width:100%;
    height: auto;
}
.card-content
{
    padding: 16px;
}
.card-content h3{
   font-size: 28px;
   margin-bottom: 8px;
   color: white;
}
.card-content p
{
    color: orange;
    font-size: 15px;
    line-height: 1.3;
} 
.card-content .btn
{
    display: inline-block;
    padding: 8px 16px;
    background-color: azure;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: black;
}