@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");

* {
  box-sizing: border-box;
}

body { 
  margin: 0;
  font-family: "Asap",sans-serif;
}

#container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    background-color: #fdfdfd;
}

#container div{
    // height: 200px;
    width: 335px;
    background: #ccccdb;
    margin: 60px;
    text-align: center;
}

.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 10px 10px;
  margin-bottom: 20px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 6px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
}

.card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    width: 20rem;
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 14px;
  }

  .cart-card {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    width: 20rem;
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 14px;
  }

/*
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}
*/