* {
  margin: 0;
  padding: 0;
}

body {
  font-family: consolas, 'Courier New', Courier, monospace;
  height: 100vh;
  line-height: 1.3;
  background-color: rgb(36, 31, 31);
  overflow: hidden;
}

div.container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

nav#menu {
  animation: slideinFromBottom 1s ease-out 0s 1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  font-size: 20px;
  background: rgba(16, 15, 15, 0.7);
}
@keyframes slideinFromBottom {
  0% {
    transform: translateY(-100%);
    opacity: 0%;
  }
  100% {
    transform: translateY(0);
    opacity: 100%;
  }
}
nav#menu > ul {
  display: flex;
  width: 100%;
  list-style-type: none;
  justify-content: center;
}
nav#menu > ul > li {
  margin: 0 10px;
  padding: 10px;
}
nav#menu > ul > li:hover {
  background-color: rgb(100, 91, 228);
}
nav#menu > ul > li > a {
  text-decoration: none;
  color: aquamarine;
}

canvas#background {
  position: fixed;
  left: 0%;
  z-index: -1;
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  18.75% {
    transform: translateX(0);
  }
  31.25% {
    transform: translateX(-33.333%);
  }
  68.75% {
    transform: translateX(-33.333%);
  }
  81.25% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(-66.666%);
  }
}

section {
  height: 100%;
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#top > div {
  animation: slideinToTop 1.2s ease 0.2s 1;
  padding: 50px 0;
  color: rgb(240, 240, 240);
  background-color: rgba(20, 20, 20, 0.8);
}
@keyframes slideinToTop {
  0% {
    transform: translateY(100%);
    opacity: 0%;
  }
  100% {
    transform: translateY(0);
    opacity: 100%;
  }
}
#top p {
  margin: 0 10%;
}

#project > div {
  color: rgb(240, 240, 240);
  background-color: rgba(20, 20, 20, 0.8);
  padding: 20px 40px;
}
#project a {
  text-decoration: none;
  color: aquamarine;
}
#project table {
  margin-left: auto;
  margin-right: auto;
}
#project td {
  text-align: left;
  padding: 0 10px;
}
#project td:last-child {
  padding: 0;
}

#chickenSoup h1 {
  margin: 10px 0;
}
#chickenSoup > div {
  position: relative;
  height: 80%;
  width: 100%;
  color: rgb(240, 240, 240);
  background-color: rgba(20, 20, 20, 0.8);
}
#chickenSoup .chickenSoupFrame {
  margin: 0 auto;
  width: 90%;
  height: 80%;
  background-color: rgba(200, 200, 200, 0.7);
  background-size: cover;
}
#chickenSoup .textWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 100px;
  transform: translate(-50%, -50%);
  background-color: rgba(20, 20, 20, 0.7);
}
#chickenSoup span#chickenSoupCation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
}
#chickenSoup button#refresh {
  margin-top: 15px;
  width: 100px;
  height: 30px;
}

#contact > div {
  width: 100%;
  height: 20%;
  padding: 50px 0;
  color: rgb(240, 240, 240);
  background-color: rgba(20, 20, 20, 0.7);
}
#contact h1 {
  margin: 10px 0;
}
