.nav{
  text-align: right;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  padding-right: 15%;
}

.heading {
  font-family: "Silkscreen", cursive;
  text-align: center;
  padding-bottom: 5px;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo h1 {
  font-size:500%;
  color: #38b6ff;
  position: relative;
}

.logo img {
  width: 100px;
  height: 100px;
}

.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 5%;
}

.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
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;
}

.card .card_image a {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
}

.card .card_title {
  text-align: center;
  border-radius: 0px 0px 40px 40px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-top: -80px;
  height: 40px;
}

.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;
  }
}

.center {
  margin: auto;
  width: 60%;
  font-family: 'Roboto', sans-serif;
}

.description{
  
}


/*Donatetable Section*/
table.customTable {
  width: 100%;
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-width: 2px;
  border-color: #38B6FF;
  border-style: solid;
  color: #000000;
}

table.customTable td, table.customTable th {
  border-width: 2px;
  border-color: #38B6FF;
  border-style: solid;
  padding: 5px;
}

table.customTable thead {
  background-color: #38B6FF;
}


/* Button Section*/
.donate-button{

}

.donate-button a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

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

.previous {
  background-color: #38b6ff;
  color: black;
}

.next {
  background-color: #04AA6D;
  color: white;
}

.round {
  border-radius: 50%;
}

footer {
  text-align: center;
  padding: 3px;
  background-color: #38b6ff;
  color: white;
  font-family: 'Roboto', sans-serif;
}

/*
.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;
}
*/