@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;700&display=swap");

:root {
  --bg-color: #ffffff;
  --text-color: #575757;
  --card-bg: #cd2f93;
  --card-text: #ffffff;
  --button-bg: #e8f3ff;
  --button-text: #2051bb;
  --border-color: #e4e4e4;
  --hearts-bg: url("../assets/images/hearts-bg.svg");
}

.theme-light {
  --bg-color: #ffffff;
  --text-color: #575757;
  --card-bg: #cd2f93;
  --card-text: #ffffff;
  --button-bg: #e8f3ff;
  --button-text: #2051bb;
  --border-color: #e4e4e4;
  --hearts-bg: url("../assets/images/hearts-bg.svg");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", Tahoma, sans-serif;
}

.header {
  padding: 1.5rem 1.5rem;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.55rem;
}
@media (min-width: 768px) {
  .header {
    font-size: auto;
    padding: 1.5rem 2.5rem;
    gap: 0.5rem;
  }
}
.header__img {
  width: auto;
  height: 2rem;
}
.header__title {
  font-size: 1.25rem;
}

body {
  background-image: var(--hearts-bg);
  color: var(--text-color);
  background-color: var(--bg-color);
}

h2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--text-color);
}

.main-content {
  margin: 2.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .main-content {
    margin: 4rem 0;
    padding: auto;
  }
}
.main-content__subtitle {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.5rem 0 1.5rem 0;
}
@media (min-width: 768px) {
  .main-content__subtitle {
    font-size: 1.5rem;
    padding: 0.5rem 0 2.5rem 0;
  }
}

.button-container {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .button-container {
    gap: 2.5rem;
  }
}
.button-container__image {
  width: 1.875rem;
  height: auto;
}
.button-container__fighting {
  font-weight: 700;
  color: #763b00;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6.25rem;
  background-color: #ffecd8;
  border: none;
}
.button-container__fighting:hover {
  color: #ffffff;
  background-color: #763b00;
}
.button-container__fairy {
  font-weight: 700;
  color: #920092;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6.25rem;
  background-color: #ffeaff;
  border: none;
}
.button-container__fairy:hover {
  color: #ffffff;
  background-color: #920092;
}

.generated-content {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .generated-content {
    gap: 2.5rem;
  }
}

.card-generator {
  width: 100%;
  min-width: 21rem;
  min-height: 14rem;
  height: 16rem;
  padding: 1.5rem 2rem;
  background-color: var(--card-bg);
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-text);
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .card-generator {
    width: 40rem;
    height: 25rem;
    font-size: 1.5rem;
    padding: 2.5rem;
    margin-top: 2.5rem;
    min-width: auto;
    min-height: auto;
    justify-content: space-between;
  }
}
.card-generator__image-wrapper {
  align-content: center;
  max-width: 100%;
}
@media (min-width: 768px) {
  .card-generator__image-wrapper {
    width: 100%;
    max-height: 18.75rem;
  }
}
.card-generator__pokemon {
  width: 130%;
  position: relative;
  right: 10%;
  top: 2%;
}
@media (min-width: 768px) {
  .card-generator__pokemon {
    width: 100%;
    position: inherit;
  }
}

.letter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.letter__message {
  width: 8rem;
}
@media (min-width: 768px) {
  .letter__message {
    width: 15rem;
  }
}
.letter__names {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .letter__names {
    gap: 1rem;
  }
}
.letter__address {
  width: auto;
}

.new-message {
  padding: 1rem 1.5rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.share__button {
  font-weight: 700;
  color: var(--button-text);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6.25rem;
  background-color: var(--button-bg);
  border: none;
}
.share__button:hover {
  color: #ffffff;
  background-color: var(--button-text);
}
.share__image {
  width: 1.875rem;
  height: auto;
  transform: scaleX(-1);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer {
    gap: 1rem;
  }
}
.footer__message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--bg-color);
  font-weight: 700;
  width: 5rem;
}
@media (min-width: 768px) {
  .team__member {
    display: flex;
    flex-direction: row;
    padding: 1rem 1.5rem;
    gap: 1rem;
    width: auto;
  }
}
.team__name {
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .team__name {
    font-size: 1rem;
  }
}
.team__link {
  color: #000000;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
  font-weight: 400;
}
.team__link:hover {
  text-decoration: underline;
}
.team__logo {
  width: 1.125rem;
  height: auto;
}
.team__github {
  font-size: 0.5625rem;
}
@media (min-width: 768px) {
  .team__github {
    font-size: inherit;
  }
}/*# sourceMappingURL=styles.css.map */