body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Rubik", "Inter", sans-serif;
  color: #000000;
  display: flex;
  flex-direction: column;
  background-color: rgb(41, 255, 191);
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes horizontalScrollPattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes verticalScrollPattern {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 200%;
  }
}
body.diagonalBgV1 {
  background-image: repeating-linear-gradient(-45deg, rgb(41, 255, 191) 0, rgb(41, 255, 191) 50px, rgb(40, 150, 150) 50px, rgb(40, 150, 150) 100px);
  background-size: 200% 100%;
  background-attachment: fixed;
}

.animatedBgV1 {
  animation: horizontalScrollPattern 60s linear infinite;
  animation-delay: -39.6s;
}

body.diagonalBgV2 {
  background-color: rgb(41, 255, 191);
}

body.diagonalBgV2::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: -400%;
  right: -800%;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 70px, rgb(40, 150, 150) 70px, rgb(40, 150, 150) 140px);
  transform: skewX(-45deg);
  z-index: -1;
}

body.animatedBgV2::before {
  animation: horizontalScrollSkew 90s linear infinite;
}

@keyframes horizontalScrollSkew {
  to {
    transform: translateX(-50%) skewX(-45deg);
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px;
}

nav {
  display: flex;
  gap: 20px;
  padding-right: 4px;
  padding-left: 100px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .navbar-home-button {
    flex-direction: column;
  }
}
main {
  background-color: #29ff81;
  flex: 1;
  padding: 35px;
  padding-left: 55px;
  border-top: 3px solid black;
  border-bottom: 3px solid black;
  position: relative;
  z-index: 1;
}

main.crtOverlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 95%, rgba(0, 0, 255, 0.05) 100%), repeating-linear-gradient(rgba(255, 0, 0, 0.05) 5%, rgba(255, 0, 0, 0.1) 75%, rgba(255, 0, 0, 0.05) 80%), repeating-linear-gradient(rgba(0, 255, 0, 0.05) 10%, rgba(0, 255, 0, 0.1) 80%, rgba(0, 255, 0, 0.05) 85%), repeating-linear-gradient(rgba(0, 0, 255, 0.05) 15%, rgba(0, 0, 255, 0.1) 85%, rgba(0, 0, 255, 0.05) 90%), transparent;
  background-size: 100% 8px; /* Adjust scanline thickness */
  animation: verticalScrollPattern 320s linear infinite;
}

main.crtOverlayOnlyBg::after {
  z-index: -1;
}

main.crtOverlay.crtOverlayOnlyOnLoad::after {
  opacity: 0;
  animation: fadeOut 0.5s ease-out;
}

@keyframes crtStretch {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.05);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes crtFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.98;
  }
}
main.startCrtStetchAnim {
  transform-origin: center;
  animation: crtStretch 0.25s ease-in-out forwards;
}

footer {
  font-family: "Rubik", "Lexend Mega", serif;
  font-size: 12pt;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

h1, h2 {
  font-family: "Rubik", "Inter", serif;
  font-weight: bold;
  font-weight: 800;
  text-transform: uppercase;
}

p {
  font-size: 12pt;
}

h2 {
  font-size: 36pt;
}

a {
  text-decoration: none;
  color: #ff0044;
}

a:hover {
  color: white;
}

hr {
  border: none;
  background-color: black;
  height: 3px;
}

.neubrutalism-border {
  border: 3px solid black;
  box-shadow: 4px 4px 0px 1px black;
  border-radius: 0px;
}

.abutton,
.navbar-button {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  background-color: white;
  color: black;
  border: 3px solid black;
  box-shadow: 4px 4px 0px 1px black;
  font-family: "Lexend Mega", "Rubik", serif;
  font-weight: bold;
  border-radius: 0px;
}

.abutton:hover {
  background-color: #ff0044;
  color: white;
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

.abutton-square-img {
  min-width: 50%;
  min-height: 50%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
}

.navbar-button {
  background-color: white;
  color: #ff0044;
}

.navbar-button:hover {
  background-color: #ff0044;
  color: white;
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

.navbar-button-square {
  height: 20px;
}

.contact-buttons-grid {
  margin-top: 20px;
  display: grid;
  gap: 30px;
  width: 35vh;
  grid-template-columns: repeat(3, 1fr); /* Three equal columns */
}

.abutton-contact {
  color: black;
  min-width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

.abutton-contact:hover {
  background-color: white;
  color: black;
}

.abutton-contact-itch {
  background-color: #df7688;
}

.abutton-contact-gamejolt {
  background-color: #badf76;
}

.abutton-contact-github {
  background-color: #b076df;
}

.abutton-contact-mastodon {
  background-color: #768fdf;
}

.abutton-contact-twitter {
  background-color: #76bedf;
}

.abutton-contact-linkedin {
  background-color: #768fdf;
}

.abutton-contact-youtube {
  background-color: #df7676;
}

.abutton-contact-discord {
  background-color: #8676df;
}

.navbar-home-button {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-avatar {
  width: 75px;
  aspect-ratio: 1/1;
}

.navbar-name-img {
  height: 25pt;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 20px;
}

.portfolio-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-grid-item:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

.portfolio-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  aspect-ratio: 16/9;
  background-color: white;
  color: black;
  font-family: "Lexend Mega", "Rubik", serif;
  font-size: 36pt;
}

.portfolio-thumbnail:hover {
  color: #ff0044;
}

.portfolio-contact-buttons-grid {
  margin-bottom: 25px;
}

.main-about {
  position: relative;
}

.main-about-content {
  display: flex;
  gap: 50px;
}

@media (max-width: 640px) {
  .main-about-content {
    flex-direction: column;
  }
  .main-about-side {
    position: relative;
  }
}
.about-content {
  padding-left: 20px;
  min-width: 35%;
  max-width: 30vh;
  font-size: 12pt;
}

.main-about-side {
  margin-left: auto;
  margin-right: 20%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 55%;
  bottom: 0;
  display: flex;
}

.main-about-side-image {
  min-width: 200px;
  max-width: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}

#homepage-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-redirect-button {
  background-color: #ff0044;
  color: white;
  rotate: -2deg;
  scale: 1.5;
  margin-left: -2.9%;
}

.homepage-redirect-button:hover {
  background-color: white;
  color: black;
}/*# sourceMappingURL=style.css.map */