:root {
  --primary-color: #00C0FC;
  --bg-color: #092D47;
  --text-color: #fff;
}

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');

/* Typo */
.gl-light {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
.gl-bold {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

/* General */
html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
}
body {
  background-color: var(--bg-color);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem 0.80rem;
  border: 0.25rem solid var(--primary-color);
  background-color: transparent;
  color: var(--text-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.button:hover,
.button:focus {
  background-color: var(--primary-color);
  outline: none;
}
h1,
h2 {
  margin: 0;
}

/*** Featuring ***/
.featuring {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap:4rem;
  width: 100%;
  height: 100vh;
}
.featuring .logo {
  width: 150px;
}
.featuring .titles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
}
.featuring h1 {
  font-size: 4rem;
}
.featuring h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 480px) {
  .featuring h1 {
    font-size: 2.5rem;
  }
  .featuring h2 {
    font-size: 1.4rem;
  } 
}
