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

/* Design */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background-color: #000000;
}

body {
  color: #000000;
  font-family: 'Quicksand', serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

main{
  padding-top: 45px;
  border-radius: 35px;
  width: 90vw;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 25px;
  
}

.CardImgGrid{
  display: flex;
  align-items: center;
  justify-content: center;
}

.Cardimg{
  padding: 20px;
  border-radius: 55px;
  height: 450px;
  box-shadow: 0 0 20px 0px;
  margin-top: 1rem;
}

h1 {
  padding: 20px;
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
  color: white;
  border-radius: 15px;
  background-color: #042e53e8;
  display: flex;
  align-items: center;
  justify-content: center;
    
}

.TitleCard{
  border-radius: 35px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn {
  display: block;
  padding: 10px 40px;
  margin: 10px auto;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
  outline: none;
  text-decoration: none;
  color: #f3f3f3;
  background: linear-gradient(to bottom left, #000000e8 40%, var(--Azul-Escuro) 100%);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(236, 236, 236, 0.3);
  cursor: pointer;
}

.btn:hover, .btn:focus, .btn:active, .btn:visited{
  transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
  animation: gelatine 0.5s 1;
}

@keyframes gelatine {
  0%, 100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}

.cards {
  background-color: #022a4e;
  border-radius: 20px;
  border: solid 20px #022a4e;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}

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

.card {
  background-color: transparent;
  border-radius: 0.85rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
  background:var(--Azul-Escuro);
  transition: background-color 0.9s ease-in-out;
}

.card_content:hover {
  padding: 1rem;
  background-color: #0780eaf8;
}

.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;
}
.made_by{
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}

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

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