/*
  VARIABLES
*/

:root {
  --color-light: #F1F7ED;
  --color-dark: #262626;
  --color-pop: #05668d;
}

/*
  CSS RESET
*/

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  ELEMENTS
*/

body {
  background-color: var(--color-light);
  color: var(--color-dark);
}

h1 {
  font-size: 6rem;
}

nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
  padding: 1rem 2rem;
  width: 600px;
}

p, ul {
  padding-bottom: 1rem;
}

/*
  CLASSES
*/

.navlink {
  color: var(--color-pop);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}

.navlink.active {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.header {
  background: linear-gradient(0deg, transparent 0%, transparent 20%, var(--color-pop) 20%, var(--color-pop) 100%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 2rem 0 0 0;
  width: 100%;
}

.header h1 {
  max-width: 600px;
  width: 600px;
}
