@import url("./default.css");

body {
  background: #101a6c;
}

.c-section {
  margin: 120px auto;
  padding: 0px 30px;
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  align-items: center;
}

/* Components */

.c-logo__image {
  margin: 0 auto;
}

.c-logo__title {
  text-align: center;
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-logo__title,
.c-logo__description {
  color: #ffffff;
}

.c-logo__description {
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}

.c-logo__emoji {
  color: #de0915;
}

.c-button {
  width: 100%;
}

.c-button__text {
  font-weight: 500;
}

.c-button__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
  column-gap: 12px;
  border-radius: 12px;
  width: 100%;
  background: #ffffff;
  transition: background 0.15s ease-out;
  box-shadow: -1px 5px 20px 0px rgb(0 0 0 / 20%);
  transition: transform 0.15s cubic-bezier(0.26, -0.27, 0.5, 3) 0s;
}

.c-button__button:hover {
  transform: scale(1.03);
}

.c-button__button > span {
  color: #212121;
  font-weight: 500;
}

.c-button__icon {
  font-size: 20px;
  color: #212121;
}

/* Utilities */
