body{
  background-color: #93c7c0!important; 
  padding: 10px;
}

/* Header Title */
.header {
  padding: 5px;
  text-align: center;
  background-color: #93c7c0;
  color: white;
}
/* Create one column that floats */
.centercolumn{
 float: left;
 width: 100%;
}
.cards-list {
  position: absolute;
  top: 0px;
  left: 20px;
  z-index: 0;
  width: 95%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  margin: 30px auto;
  width: 215px;
  border-radius: 40px!important;
  box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
  cursor: pointer;
  transition: 0.4s;
}

.card .card_image {
  width: inherit;
  height: inherit;
  border-radius: 40px;
}

.card .card_image img {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
  padding:1px;
  border:5px solid #af937b;
}

.card .card_title {
  text-align: center;
  border-radius: 0px 0px 40px 40px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 21px;
  margin-top: -80px;
  height: 40px;
}
/* On screen Hover for Menu Buttons
.card:hover {
  transform: scale(0.9, 0.9);
  box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
    -5px -5px 30px 15px rgba(0,0,0,0.22);
}
*/
.title-white {
  color: white;
}

.title-black {
  color: black;
}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}
/* scroll up */
.scrollup {
    position: fixed;
    right: 28px;
    bottom: 10%;
    width: 50px;
    height: 50px;
    z-index: 99;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 1.7;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0.7;
    display: none;
}
a.scrollup i {
    color: #fff;

}
a.scrollup:hover {
    opacity: 1;
}
.button a, .button button,
.scrollup,
.tab-set .tabs-titles li {
    background-color: #535657;

}
/*-----------------------------------------------------------------------------------*/
/*   Footer
/*-----------------------------------------------------------------------------------*/

#footer{
    position: absolute;
    bottom: 0;
    width:100%;
    height:10px;   /* Height of the footer */
    display: inline-block;
    left: 0;
   } 

   #footer .footer-copyright {
       font-size: 15px;
       color: #ffffff;
   }
#footer .footer-container {
    background-color: #af937b;
    padding: 10px 0 10px;
    text-align: center;

}
/*
.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
  transition: 0.4s;
}
*/