@keyframes load-front-page {
  from {
    transform: translateY(0);
    opacity: 0;
  }
  to {
    transform: translateY(30px);
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgba(0, 0, 0, 0.85);
  margin: 0;
}

.aligned-v-h-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aligned-h-right {
  display: flex;
  justify-content: end;
}
.aligned-h-left {
  display: flex;
  justify-content: start;
}
.aligned-h-center {
  display: flex;
  justify-content: center;
}
.aligned-v-center {
  display: flex;
  align-items: center;
}

.banner {
  width: 100%;
  height: 50px;
  background-color: black;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 14fr 1fr;
  z-index: 1;
}
.home-icon {
  width: 100%;
  grid-column: 3;
  background: none;
  border: none;
}
.home-icon img {
  width: 50px;
  padding-right: 5px;
}

#open-menu {
  width: 50px;
  margin-left: 10px;
  display: none;
}
#open-menu:hover {
  cursor: pointer;
}
.rotated {
  transform: rotate(180deg);
}

.content {
  height: 100vh;
  overflow-y: auto;
}

.under-banner {
  display: grid;
  grid-template-columns: 280px 1fr;
  position: fixed;
  width: 100%;
}

.front-title-image {
  opacity: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 50px;

  animation-name: load-front-page;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.menu-grid {
  width: 100%;
  display: grid;
  grid-template-rows: 3fr 1fr;
  height: 100lvh;
  background-color: purple;
  overflow-y: auto;
}

#menu-list {
  margin-top: 60px;
  font-family: "Source Code Pro", monospace;
  margin-left: 20px;
}
#menu-list a {
  width: 100%;
}
#menu-list li {
  padding: 30px 0px;
  list-style: none;
  transition: transform 0.2s;
  width: 250px;
}
#menu-list li::before {
  content: "- ";
  color: white;
}
#menu-list a {
  text-decoration: none;
  color: white;
}

#menu-list li:hover {
  transition: transform 0.2s;
  transform: translateX(10px);
  cursor: pointer;
}

.menu-pic {
  height: 320px;
  opacity: 0.6;
}

.title {
  width: 100%;
  font-family: "Tangerine", cursive;
  font-weight: 100;
  font-style: normal;
  color: white;
  font-size: 100px;
  text-align: center;
}

.subtitle {
  color: white;
  font-weight: 100;
  font-family: "Cactus Classical Serif", serif;
  margin-top: 20px;
}

#front-photo {
  height: 350px;
  margin-top: 50px;
  box-shadow: 0 0 40px 1px rgba(255, 255, 255, 0.5);
  border-radius: 1%;
}

.title-other {
  color: white;
  font-size: 70px;
  margin-top: 70px;
  font-family: "Cactus Classical Serif", serif;
  text-align: center;
  margin-bottom: 50px;
  font-size: 70px;
}

.white-text {
  color: white;
}

#error-404 {
  width: 550px;
  margin-top: 100px;
}

#banner-update {
  width: 100%;
  height: 100%;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  white-space: nowrap;
}

.scrolling {
  animation-name: scrollLeft;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.update-link {
  text-decoration: none;
  cursor: pointer;
  font-size: 20px;
  display: inline-block;
}
.update-link.update-right-margin {
  margin-right: 75px;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
