*{
    margin: 5px;
    padding: 0;
    font-size: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

/****HEADER ******/ 

.header {
 width: 100%;
 height: 2.5rem;
 background-color: rgba(95, 95, 233, 0.747);
 display: flex;
 align-items: center;
 justify-content: center;
 
}


li {
    list-style: none;
}

.header  nav  ul{
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 15px;
   cursor: pointer;
    
}

.footer {
    background-color: rgba(0, 0, 0, 0.815);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr ; 
    grid-template-areas: 
    "socialMedia socialMedia"
    "footerMenu contactInfo" 
    "copyright copyright"

    ;
    align-items: center;
}

.social-media {
   grid-area: socialMedia;
   text-align: center;
   grid-template-areas: 
   "title title title"
   "social-links"
   ;
}

.social-media-title {
    grid-area: title;
}

.social-media-links {
    grid-area: social-links;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.footer-menu {
   grid-area: footerMenu;
   cursor: pointer;
}

.contact-info {
   grid-area: contactInfo;
   text-align: justify;
}

.copyright {
    grid-area: copyright;
    text-align: center;
}


/*--CARDS ---*/

.products {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-card img{

    width: 100%;
    height: auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(35, 45, 134, 0.301);
    width: 300px;
    border-radius: 5px;
    align-items: center;
}

.product-card button {
  border-radius: 3px;
  font-weight: 600;
  color: black;
  padding: 5px;
  cursor: pointer;
  background-color: bisque;

}
