:root {
  --white:     #ffffff;
  --blue:      #3357f5;
  --pale-blue: #f0fbfc;
  --dark-blue: #0c0059;
  --text-blue: #559ffd;
  --highlight: #49e6fc;
}

body {
  font-family: "Space Mono", monospace;
  margin: 0;
  background-color: #f0fbfc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  color: #3357f5;
}

h4, p, ul {
  color: #559ffd;
}

.nav__bar {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0.4rem 0.6rem -0.6rem #0c0059;
  height: 2.5rem;
  width: 100%;
}

.nav__menu {
  padding: 0;
}

.nav__item {
  display: inline-block;
  padding: 1.5rem;
  font-size: 0.8rem;
}

.nav__link {
  color: #559ffd;
  text-decoration: none;
}

.nav__link:hover {
  color: #49e6fc;
  transition: 0.2s;
}

.header__text {
  margin-top: 3rem;
}
