/* Font */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

/* Design */

.main{
  max-width: 1200px;
  margin: 0 auto;
}
h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}
h5{
   color: green; 
   font-size: 30px; 
   -webkit-text-stroke-width: 1mm; 
   stroke-linecap: 1px; 
   letter-spacing: 8px;
}
@media screen and (max-width: 520px) {
  h5{
   color: green; 
   font-size: 20px; 
   -webkit-text-stroke-width: 1mm; 
   stroke-linecap: 1px; 
   letter-spacing: 5px;
}
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  cursor: pointer;
}
.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 800;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 6px 6px 5px #999; 
  -webkit-box-shadow: 6px 6px 5px #999;
  -moz-box-shadow: 6px 6px 5px #999;      
}
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 10rem) {
  .cards_item {
    width: 100%;
  }
}


@media (min-width: 20rem) {
  .cards_item {
    width: 50%;
  }  
}

@media (min-width: 35rem) {
  .cards_item {
    width: 33.33%;    
  }
  .btn{
    font-size: 12px;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 20%;
  }
}

.card {
  background-color: white;
  border-radius: 0.55rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card_content {
  padding: 1rem;
  background: linear-gradient(to bottom left, #EF8D9C 40%, #FFC39E 100%);
}
.card_title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}
.card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
}