body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #161924; /* unchanged */
  color: #f8f8f2; /* unchanged */
}

.menu-icon {
  cursor: pointer;
  position: fixed;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 21px;
  height: 21px;
  z-index: 2;
}

.menu-icon div {
  width: 100%;
  height: 3.5px;
  background-color: #f8f8f2; /* unchanged */
  transition: all 0.3s ease;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #232634;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1;
}

.sidenav a {
  padding: 8px 8px 0px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #f8f8f2; /* unchanged */
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  margin-left: 8px;
  color: #ff79c6; /* new hover color */
}

.icon-links {
  margin: 0 auto;
  max-width: 960px;
  text-align: right;
}

.icon-links img {
  filter: invert(1);
  height: 16px;
}

.hero ul {
  list-style: none;
  padding: 0px;
  margin-top: -16px;
}

.hero li {
  display: inline;
  margin: 0px 8px 0px 8px;
}

.sidenav h1 {
  padding: 8px 8px 8px 32px;
  color: #dc2469;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #f8f8f2; /* unchanged */
}

.logo {
  border: solid 4px #161924;
  transition: 0.3s;
}

.logo:hover {
   rotate: 3deg;
}

.content {
  margin: 0 auto;
  padding: 20px;
  max-width: 960px;
  margin-top: 0px;
  border-radius: 8px;
}

.content h1, .content h2, .content p {
  margin-bottom: 20px;
}

.content h1 {
  font-size: 36px;
  color: #50fa7b; /* unchanged */
}

.content h2 {
  font-size: 28px;
  color: #dc2469; /* unchanged */
}

.content p {
  font-size: 18px;
  color: #f8f8f2; /* unchanged */
  line-height: 1.6;
}

.content img {
  max-width: 100%;
  border-radius: 8px;
}

.hero {
  background-image: url("featured-image.webp");
  background-position: center center;
  background-size: cover;
  text-align: center;
}

.hero img {
  max-width: 256px;
}

.hero-overlay {
  display: inline-block;
  padding: 35px;
  text-align: center;
}

.footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid #dc2469; /* unchanged */
}

.content video {
  width: 100%;
  border-radius: 8px;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 16px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {

.menu-icon {
  cursor: pointer;
  position: fixed;
  top: initial;
  left: 15px;
  bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.menu-icon div {
  width: 100%;
  height: 5px;
  background-color: #f8f8f2; /* unchanged */
  transition: all 0.3s ease;
}

}

.loopy a {
  text-decoration: none;
  color: #dc2469;
}

.content a {
  text-decoration: none;
  color: #50fa7b;
}

.loopy {
  display: grid;
  grid-template-columns: 50% auto;
  align-items: center;
}

.loopy h2 {
  padding: 32px;
}

.hero-overlay span {
  display: block;
  color: #fff;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  backdrop-filter: blur(15px) brightness(0.5) !important;
  max-width: 256px;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 5px;
}

.hero-overlay img {
  border-radius: 100%;
}

@media only screen and (max-width: 768px) {

  .loopy {
    display: block;
  }
  
  .loopy h2 {
    padding: 0px;
  }
  
}