html {
  font-family: 'Roboto', sans-serif;
}
body {
  padding: 1rem;
}

.no-user-select {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.logo {
  width: 90px;
}

.cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.card-header {
  box-shadow: inset 0 -1px 0 0 rgba(26, 26, 26, 0.1);
  width: 100%;
}

.card-body {
  display: flex;
  justify-content: center;
  width: 100%;
}

.card-footer {
  box-shadow: inset 0 1px 0 0 rgba(26, 26, 26, 0.1);
  width: 100%;
}

.card-footer-action-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 56px;
  padding: 0 8px;
}
.two-actions {
  justify-content: space-between;
}

.card-header--title {
  padding: 16px;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 23px;
}

.card-image {
  max-width: 250px;
}

.content {
  padding: 12px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 23px;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.link {
  margin-top: 8px;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.04em;
  overflow-wrap: break-word;
  word-break: break-word;
  color: #1a1a1a;
  opacity: 0.5;
}

input {
  border: 1px solid lightgray;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  width: 88px;
  text-transform: uppercase;
}

input::placeholder {
  color: #a1a1a1;
  text-align: center;
  text-transform: capitalize;
}

input:focus-visible {
  outline: 1px solid lightgrey;
}

.action {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  width: 125px;
}

a {
  color: #00c375;
  border-radius: 12px;
  padding: 11.5px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  cursor: pointer;
  font-weight: bold;
}

a:focus {
  outline: 0;
}

a:hover {
  background: #e4f6f2;
}

.isDisabled {
  cursor: not-allowed;
  color: #a1a1a1;
  pointer-events: none;
  opacity: 0.5;
  text-decoration: none;
}

.footer-brand {
  display: flex;
  padding: 32px 0 0;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.rights {
  opacity: 0.3;
}

/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Screen larger than 900px? 3 columns */
@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Screen larger than 1200px? 4 columns */
@media (min-width: 1000px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
