:root {
    --main-color: #f0f3f0;
    --second-color: #0b2309;
    --main-cta: #fffb8a;
    --flash-color: #fc6d54;
    --third-color: #e1effa;
    --fourth-color: #310d27;
    --pastel-color-1: #ECEEDF;
    --pastel-color-2: #fff5ec;
    --pastel-color-3: #ecf7ff;
    --pastel-color-4: #fcecff;
    --max-width: 1400px;
    --responsive-width: 900px;
}

.bold {
    font-weight: bold;
}

html, body {
     padding: 0;
    margin: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--main-color);
    color: black;
    padding: 10px;
    padding-top: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.012);
}

header p {
    margin: 0;
}

header a {
    margin: 8px 0px;
    color: black;
    text-decoration: none;
    font-weight: 100;
}

.title {
    font-weight: bold;
    color: black;
    font-size: 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.icon {
    width: 50px;
    border-radius: 30px;
    margin-right: 10px;
}

.maxwidth {
    max-width: var(--max-width);
    margin: 0 auto;
}

.beforeheader {
    background-color: var(--fourth-color);
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

.beforeheader p {
    padding: 0;
    margin: 0;
    text-align: center;
}

.beforeheader a {
    color: white;
}

.showlittle {
    display: inherit;
}

.hidelittle {
    display: none;
}

@media only screen and (min-width: 900px) {
  header {
    flex-direction: row;
    padding-top: 50px;
  }

  header a {
    margin: 0px 10px;
  }

  .showlittle {
    display: none;
  }

  .hidelittle {
    display: inherit;
  }
}