@import url("https://use.typekit.net/psd6dgn.css");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Quicksand:wght@300..700&display=swap");
:root {
  --primary: #6CE5E8;
  --accent1: #41B8D5;
  --accent2: #2D8BBA;
  --accent3: #2F5F98;
  --accent4: #31356E;
  --background: #1E1E1E;
  --text: #FEFEFE;
  --text-w-background: #1E1E1E;
  --accent: #E4E4E4;
  --shadow-color: rgba(255, 255, 255, 0.3);
}

[data-theme=light-blue] {
  --primary: #6CE5E8;
  --accent1: #41B8D5;
  --accent2: #2D8BBA;
  --accent3: #2F5F98;
  --accent4: #31356E;
  --background: #FEFEFE;
  --text: #1E1E1E;
  --text-w-background: #FEFEFE;
  --accent: #E4E4E4;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

[data-theme=light-pink] {
  --primary: #FAADE3;
  --accent1: #D541A7;
  --accent2: #BA2D93;
  --accent3: #982F7E;
  --accent4: #6E3161;
  --background: #FEFEFE;
  --text: #1E1E1E;
  --text-w-background: #FEFEFE;
  --accent: #E4E4E4;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

[data-theme=dark-pink] {
  --primary: #FAADE3;
  --accent1: #D541A7;
  --accent2: #BA2D93;
  --accent3: #982F7E;
  --accent4: #6E3161;
  --background: #1E1E1E;
  --text: #FEFEFE;
  --text-w-background: #1E1E1E;
  --accent: #E4E4E4;
  --shadow-color: rgba(255, 255, 255, 0.3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

p, input, a, span, label, textarea {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: 18px;
}

body {
  background-color: var(--background);
  padding: 20px;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

main {
  margin-bottom: 110px;
}

a {
  color: var(--accent2);
}

.note {
  font-style: italic;
  font-size: 14px;
}

.primary-gradient {
  background: linear-gradient(to right, var(--primary), var(--accent1), var(--accent2), var(--accent3), var(--accent4));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
  background: linear-gradient(to right, var(--primary), var(--accent1), var(--accent2), var(--accent3), var(--accent4));
  color: var(--text-w-background);
  fill: var(--text-w-background);
}

.bg--primary {
  background-color: var(--primary);
  color: var(--text-w-background);
}
.bg--primary svg {
  fill: var(--text-w-background);
}
.bg--primary a {
  color: var(--accent3);
}
.bg--accent1 {
  background-color: var(--accent1);
  color: var(--text-w-background);
}
.bg--accent1 svg {
  fill: var(--text-w-background);
}
.bg--accent1 a {
  color: var(--accent4);
}
.bg--accent2 {
  background-color: var(--accent2);
  color: var(--text-w-background);
}
.bg--accent2 svg {
  fill: var(--text-w-background);
}
.bg--accent2 a {
  color: var(--primary);
}
.bg--accent3 {
  background-color: var(--accent3);
  color: var(--text-w-background);
}
.bg--accent3 svg {
  fill: var(--text-w-background);
}
.bg--accent3 a {
  color: var(--primary);
}
.bg--accent4 {
  background-color: var(--accent4);
  color: var(--text-w-background);
}
.bg--accent4 svg {
  fill: var(--text-w-background);
}
.bg--accent4 a {
  color: var(--primary);
}
.bg--warning {
  background-color: #e53935;
  color: #fefefe;
  fill: var(--text-w-background);
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.btn {
  border: none;
  border-radius: 5px;
  box-shadow: 0px 2px 18px 0px var(--shadow-color);
  text-decoration: none;
  margin: 25px 0;
  display: block;
  text-align: center;
}
.btn--back {
  font-size: 1.2rem;
  padding: 5px;
  width: 75px;
}

.ham-menu {
  height: 50px;
  width: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
}
.ham-menu div {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  transition: opacity 0.1s ease-in-out, transform 0.3s ease-in-out;
}

.ham-menu.active {
  position: relative;
  justify-content: center;
}
.ham-menu.active div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.ham-menu.active :nth-child(1) {
  transform: rotate(45deg);
}
.ham-menu.active :nth-child(2) {
  opacity: 0;
}
.ham-menu.active :nth-child(3) {
  transform: rotate(-45deg);
}

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  background-color: var(--background);
  height: 50px;
  width: 100%;
}
nav a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav svg {
  width: 25px;
  height: 25px;
}

.standard-form__form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin: 25px 0;
}
.standard-form label {
  font-size: 1.4rem;
  margin-bottom: 3px;
}
.standard-form input, .standard-form select {
  height: 40px;
  padding: 5px;
  font-size: 1.2rem;
  border-radius: 15px;
  border: 1px solid;
}
.standard-form__delete {
  border: none;
  box-shadow: 0px 12px 18px -6px var(--shadow-color);
  margin-bottom: 10px;
  height: 50px !important;
  cursor: pointer;
}
.standard-form input[type=submit] {
  background-color: var(--accent1);
  border: none;
  box-shadow: 0px 12px 18px -6px var(--shadow-color);
  margin-bottom: 100px;
  height: 50px;
  cursor: pointer;
}
.standard-form textarea {
  height: 100px;
  padding: 5px;
  font-size: 1.2rem;
  border-radius: 15px;
}
.standard-form__link {
  display: block;
  text-decoration: none;
  margin: 25px 0;
  font-size: 1.4rem;
}
.standard-form__link:hover {
  text-decoration: underline;
}

.small-form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.small-form__form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.small-form input, .small-form select {
  height: 25px;
  border-radius: 5px;
  border: 1px solid;
}
.small-form input[type=submit] {
  background-color: var(--accent1);
  border: none;
  box-shadow: 0px 12px 18px -6px var(--shadow-color);
  height: 30px;
  cursor: pointer;
}

.button {
  border-radius: 15px;
  border: none;
  box-shadow: 0px 12px 18px -6px var(--shadow-color);
  padding: 10px;
  width: 150px;
  cursor: pointer;
}
.button--w-icon {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.button--w-icon svg {
  width: 20px;
  height: 20px;
}
.button p {
  margin: 0;
}

.tabs {
  display: grid;
  box-shadow: 0px 2px 18px 0px var(--shadow-color);
  background-color: var(--accent);
  margin: 25px 0;
  border-radius: 5px;
  overflow: hidden;
}
.tabs button {
  width: 100%;
  height: 50px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.tabs button:hover {
  background-color: var(--accent1);
  color: var(--text-w-background);
}
.tabs--2 {
  grid-template-columns: repeat(2, 1fr);
}
.tabs__items {
  position: relative;
  overflow: hidden;
  height: 800px;
}
.tabs__items .tabs__item {
  position: absolute;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.tabs__items .tabs__item:nth-child(1) {
  transform: translateX(-150%);
}
.tabs__items .tabs__item:nth-child(2) {
  transform: translateX(150%);
}
.tabs__items .tabs__item.active {
  transform: translateX(0) !important;
}

/*# sourceMappingURL=styles.css.map */
