* {
  font-family: "Lato", sans-serif;
}
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.logo {
  width: fit-content;
  height: fit-content;
  margin: 0.5rem 1rem;
  font-weight: bold;
  line-height: 1.85rem;
  display: inline-block;
}
.bold {
  font-weight: 1000;
}
.regular {
  font-weight: 500;
}
.light {
  font-weight: lighter;
  opacity: 0.5;
}
.navbar {
  background-color: #3aafa9;
  width: 100vw;
  max-height: 80px;
  display: flex;
}
.nav-ul {
  list-style-type: none;
  display: flex;
}

.nav-li {
  margin: auto 1rem;
}
.nav-link {
  text-decoration: none;
  color: white;
  transition: 0.2s;
}
.nav-link:hover {
  opacity: 0.7;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card {
  min-width: 30vw;
  min-height: 250px;
  max-width: 90%;
  max-height: 500px;
  background-color: rgba(241, 241, 241, 0.301);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(#000, 0.15);
}
.elevation-1 {
  -webkit-box-shadow: 1px 1px 3px 0px rgba(87, 87, 87, 1);
  -moz-box-shadow: 1px 1px 3px 0px rgba(87, 87, 87, 1);
  box-shadow: 1px 1px 3px 0px rgba(87, 87, 87, 1);
}
.elevation-2 {
  -webkit-box-shadow: 2px 2px 3px 0px rgba(87, 87, 87, 1);
  -moz-box-shadow: 2px 2px 3px 0px rgba(87, 87, 87, 1);
  box-shadow: 2px 2px 3px 0px rgba(87, 87, 87, 1);
}
.dark {
  color: white;
  background-color: rgb(8, 0, 46);
}
.dark ~ body {
  background-color: black;
}
.dark > * > * > * > * > * > * > * > * {
  background-color: #edf5e1;
  color: white;
}
.dark > .wrapper > section > * > * > .btn-outlined {
  background-color: transparent;
  color: white;
  border: 1.3px solid white;
}
.dark > .wrapper > section > * > * > .btn-outlined:hover {
  border-color: lightgray;
  color: lightgray;
}
.decoration-none {
  text-decoration: none;
}
.text-white {
  color: white;
}
.example {
  border-radius: 10px;
  padding: 0.8rem 1.7rem;
  background-color: #6bdd96;
  color: white;
}
.btn-outlined {
  cursor: pointer;
  color: black;
  font-weight: 500;
  border: 1.3px solid black;
  background-color: transparent;
  padding: 0.4rem 0.6rem;
  border-radius: 24px;
  transition: 0.2s ease-out;
}
.btn-outlined:hover {
  background-color: black;
  color: white;
}
.btn-outlined:active {
  background-color: black;
  color: white;
}
.btn-fill {
  cursor: pointer;
  color: white;
  font-weight: 500;
  border: none;
  background-color: #379683;
  padding: 0.4rem 0.6rem;
  border-radius: 24px;
  transition: 0.2s ease-out;
}
.btn-fill:hover {
  border: 1px solid #379683;
  background-color: transparent;
  color: black;
}
.flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-start {
  align-items: flex-start;
}
.align-stretch {
  align-items: stretch;
}
.align-baseline {
  align-items: baseline;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.flex-col {
  flex-direction: column;
}
.spacing-1 {
  letter-spacing: 2px;
}
.spacing-2 {
  letter-spacing: 20px;
}
.ma-1 {
  margin: 1rem;
}

.ma-2 {
  margin: 2rem;
}

.mr-1 {
  margin-right: 1rem;
}
.mr-2 {
  margin-right: 2rem;
}
.mr-3 {
  margin-right: 3rem;
}
.mr-4 {
  margin-right: 4rem;
}
.mr-5 {
  margin-right: 5rem;
}
.mr-6 {
  margin-right: 6rem;
}

.ml-1 {
  margin-left: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.ml-3 {
  margin-left: 3rem;
}
.ml-4 {
  margin-left: 4rem;
}
.ml-5 {
  margin-left: 5rem;
}
.ml-6 {
  margin-left: 6rem;
}
.ml-7 {
  margin-left: 7rem;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-12 {
  margin-top: 4rem;
}
.mt-12 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mt-7 {
  margin-top: 7rem;
}
.mt-12 {
  margin-top: 12rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.mb-7 {
  margin-bottom: 7rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mb-9 {
  margin-bottom: 9rem;
}
.my-1 {
  margin: 0 1rem;
}
.my-2 {
  margin: 0 2rem;
}
.my-3 {
  margin: 0 3rem;
}
.my-4 {
  margin: 0 4rem;
}
.my-5 {
  margin: 0 5rem;
}
.my-6 {
  margin: 0 6rem;
}
.my-7 {
  margin: 0 7rem;
}
.my-8 {
  margin: 0 8rem;
}
.mx-1 {
  margin: 1rem 0;
}
.mx-2 {
  margin: 2rem 0;
}
.mx-3 {
  margin: 3rem 0;
}
.mx-4 {
  margin: 4rem 0;
}
.mx-5 {
  margin: 5rem 0;
}
.mx-6 {
  margin: 6rem 0;
}
.mx-7 {
  margin: 7rem 0;
}
.mx-8 {
  margin: 8rem 0;
}

.pa-1 {
  padding: 1rem;
}
.pa-2 {
  padding: 2rem;
}
.pa-3 {
  padding: 3rem;
}
.pa-4 {
  padding: 4rem;
}
.pb-1 {
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 2rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
