body {
  font-family: "OpenSans", sans-serif;
  color: #ffffff;
  line-height: 1.6;
}

/* === POSITION === */

/* =================== */
/* |      Header     | */
/* =================== */

header {
  margin: 2% 10% 0% 10%;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

/* ========================= */
/* |      Header - Nav     | */
/* ========================= */

nav {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

/* ============================== */
/* |      Header - Register     | */
/* ============================== */

header div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

/* === STYLE === */

/* =================== */
/* |      Header     | */
/* =================== */

header {
  background-color: #262624;
  border-radius: 5px;
}

header h1 {
  font-family: "Chunk Five";
  font-size: 4em;
  color: #ffffff;
  font-weight: 200;
}

header h1 span {
  color: #0097b2;
}

/* ========================= */
/* |      Header - Nav     | */
/* ========================= */

nav a {
  transition-duration: 1s;
  font-family: "Alatsi";
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5em;
}

nav a:hover {
  color: #0097b2;
  transition-duration: 0.5s;
}

.section-title {
    text-align: center;
    font-family: "Alatsi";
    font-size: 3em;
    margin: 80px 0 50px 0;
    color: #ffffff;
    /* text-transform: uppercase; */
}

/* ========================= */
/* |      Section Home     | */
/* ========================= */

#home {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding: 0 5%; */
}

#home h2 {
  font-size: 3.5rem;
  /* margin-bottom: 10px; */
}

#home p {
  font-size: 1.2rem;
  color: #b3b3b3;
  max-width: 600px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #333;
  color: #b3b3b3;
  font-size: 0.9rem;
}
