/* Main */
main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.card {
  max-width: 57rem;
  padding: 1rem;
  border-radius: 0.8rem;
  box-shadow: 0.08rem 0.08rem 1rem #000000;
  background-color: #131625;
}

.card:nth-child(odd) {
  align-self: flex-end;
}

.card-logo-container {
  padding: 0.8rem;
  border: dashed 0.3rem #fff;
  border-radius: 50%;
}

.card-logo {
  width: 12rem;
  height: 12rem;
  /* border: dashed 0.3rem #fff; */
  /* border-radius: 50%; */
}

.card-title {
  font-weight: 100;
}

.card-title::before {
  content: open-quote;
  font-size: 3rem;
}

.card-title::after {
  content: close-quote;
}

.card-content {
  padding: 1rem;
  border-radius: 0.8rem;
  background-color: #1a1e33;
}

.thnks {
  text-align: center;
  font-weight: 800;
}

@media screen and (max-width: 668px) {
  /* Main */
  .card {
    font-size: 82.5%;
  }

  .card-logo {
    width: 6rem;
    height: 6rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-title::before {
    font-size: 2rem;
  }
}
