@import url("https://fonts.googleapis.com/css2?family=Bungee+Inline&family=Bungee+Shade&family=Inconsolata:wght@300&family=Jua&family=Love+Ya+Like+A+Sister&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");

* {
  box-sizing: border-box;
}

body {
  font-size: 12px;
  font-family: "Inconsolata", monospace;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #68e6ac;
  overflow: auto;
}

.title {
  text-align: center;
  margin: 20px;
  text-align: center;
  font-size: 60px;
  color: #f4fafc;
  text-shadow: 2px 2px 4px #000000;
  font-family: "Bungee Inline", cursive;
}

section {
  width: 100vw;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  margin-left: 30px;
}

section.filler {
  /* min-height: 300px; */
}

article {
  width: 800px;
}

article h1 {
  font-size: 4em;
  color: white;
  text-shadow: 2px 2px 4px #00000040;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Bungee Inline", cursive;
}

hr {
  border-color: grey;
  border-bottom: none;
  margin-top: 16px;
  margin-bottom: 24px;
}

li {
  font-size: 20px;
  margin-bottom: 8px;
  color: #211e1e;
}

li b {
  font-weight: bold;
  color: #211e1e;
}

.bg-blue {
  background: #5fc7ea;
}

.bg-red {
  background: #e68568;
}

.bg-green {
  background: #68e6ac;
}

.bg-yellow {
  background: #e6d068;
}

/* NAV STYLES */

nav {
  background-color: #34495e;
  opacity: 40%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 70px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
nav::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}

nav a {
  text-decoration: none;
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: white;
  opacity: 0.9;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  z-index: 1;
  font-family: "Jua", sans-serif;
}

nav a:hover {
  /* background: #507192; */
  transition: background 0.3s ease;
  color: white;
  opacity: 1;
}

nav .moving-bg {
  position: absolute;
  height: 40px;
  top: 24px;
  left: 0;
  z-index: 0;
  width: 70px;
  transition: all 0.18s ease 0s;
  will-change: transition;
  border-radius: 0px;
  background: #5fc7ea;
}

/* BUTTON STYLES */

:root {
  --backgroundColor: rgba(246, 241, 209);
  --colorShadeA: rgb(106, 163, 137);
  --colorShadeB: rgb(121, 186, 156);
  --colorShadeC: rgb(150, 232, 195);
  --colorShadeD: rgb(187, 232, 211);
  --colorShadeE: rgb(205, 255, 232);
}

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

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--colorShadeA);
  font-weight: 700;
  text-transform: uppercase;
  font-family: inherit;
}

button.big-button {
  padding: 1em 2em;
  border: 2px solid var(--colorShadeA);
  border-radius: 1em;
  background: var(--colorShadeE);
  transform-style: preserve-3d;
  transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
button.big-button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--colorShadeC);
  border-radius: inherit;
  box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
  transform: translate3d(0, 0.75em, -1em);
  transition: all 175ms cubic-bezier(0, 0, 1, 1);
}

button.big-button:hover {
  background: var(--colorShadeD);
  transform: translate(0, 0.375em);
}

button.big-button:hover::before {
  transform: translate3d(0, 0.75em, -1em);
}

button.big-button:active {
  transform: translate(0em, 0.75em);
}

button.big-button:active::before {
  transform: translate3d(0, 0, -1em);

  box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.25em 0 0 var(--colorShadeB);
}
