*{
  margin: 0;
  padding: 0;

}

:root{
  --main-bg-color:#F4F5F5;
  --navfooter-bg-color: #00979d;
  --link-color: #00979d;
}

.container{
  overflow: auto;
  width: 100vw;
  height: 100vh;
  padding: 0px;
  background: var(--main-bg-color);
}


nav{
  grid-column-start: 1;
  grid-column-end: 4;
  padding: 30px;
  background: var(--navfooter-bg-color);
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));

}


ul{
  list-style-type: none;
}

li{
  float: left;
}

li a{
  margin-left: 80px;
  display: block;
  text-align: center;
  padding: 0px;
  text-decoration: none;
  color: #E8F0FF;
  font-weight: bold;
  bottom: 30px;
}

li a:hover {
  background-color: var(--navfooter-bg-color);
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5);
  transition-duration: 0.7s;
}

.cards {
    line-height: 1.5;
    --auto-grid-min-size: 16rem;
    margin: 0 auto;
    /* max-width: 1000px; */
    /* grid-auto-rows: auto; */
    font-family: sans-serif;
    padding-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: 1rem;
}

.cards * {
    box-sizing: border-box;

}

.card__zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
  transition-duration: 0.8s;
}

.card__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-top: 0px solid #333333;
    border-right: 0px solid #333333;
    border-left: 0px solid #333333;
}

.card__content {
    line-height: 1.5;
    font-size: 0.9em;
    padding: 15px;
    background: #fafafa;
    border-right: 1px solid #333333;
    border-left: 1px solid #333333;
}

.card__content > p:first-of-type {
    margin-top: 0;
}

.card__content > p:last-of-type {
    margin-bottom: 0;
}

.card__info {
    padding: 15px;
    display: block;
    justify-content: space-between;
    align-items: center;
    color: #555555;
    background: #eeeeee;
    font-size: 0.8em;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333;
    border-left: 1px solid #333333;
}

.card__info i {
    font-size: 0.9em;
    margin-right: 8px;
}

.card__button{
  height: 30px;
  width: 70px;
  border-radius: 15px;
  background-color: white;
  color: black;
  border: 2px solid #00979d;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  transition-duration: 0.8s;
}

.card__button:hover {
  background-color: #00979d;
  color: white;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0), 0 6px 20px 0 rgba(0,0,0,0);
}
.container footer{
  padding: 10px;
  background:var(--navfooter-bg-color);
}
.footer{
  grid-column-start: 1;
  grid-column-end: 4;
  color: #E8F0FF;
  left: 0;
  right: 0;
  height: 40px!important;
}
