:root {
  --color-primary: hsl(180, 33%, 69%);
  --color-secondary: hsl(0, 41%, 23%);
}

html,
body {
  min-height: 100vh;
  background-color: black;
  color: white;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
}

section {
  min-height: 100vh;
  background-attachment: local;
}

.in-prog {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}
.in-prog span {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  text-transform: uppercase;
  margin-top: 50%;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  font-size: 0.75rem;
  color: white;
  border: 2px solid white;
  border-right: none;
  border-left: none;
  padding: 0.5rem 7rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 0 16px 3px rgba(0, 0, 0, 0.745);
}

a {
  text-decoration: none;
  color: inherit;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin: 2rem;
  gap: 0.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10;
}
.nav .options {
  transform: rotate(90deg) translate(50%, 50%);
  transform-origin: right center;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Doto", sans-serif;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.nav .options :hover {
  color: var(--color-primary);
}
.nav .options div {
  background: rgba(0, 0, 0, 0.398);
  border-radius: 1rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.31));
  padding: 1rem;
}
.nav nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.31);
  width: 100%;
}
.nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 600px) {
  .nav nav ul {
    flex-direction: row-reverse;
  }
}
.nav nav ul .top {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: rgba(0, 0, 0, 0.398);
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: n-resize;
  box-shadow: inset 0 0 0.3rem 0.1rem rgba(209, 196, 196, 0.805);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav nav ul .top svg {
  width: 1rem;
  height: 1rem;
  color: white;
}
.nav nav ul li {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
  .nav nav ul li {
    padding: 0 0.75rem;
  }
  .nav nav ul li a > span {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .nav nav ul li:hover {
    color: var(--color-primary);
    background: var(--color-secondary);
  }
}
.nav nav ul li svg {
  width: 1rem;
  height: 1rem;
}

.intro {
  background: url("../images/Perlin.png") no-repeat center center/cover, radial-gradient(circle at top right, var(--color-primary) 0%, var(--color-secondary) 75%), rgba(0, 0, 0, 0.287);
  background-blend-mode: multiply;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}
.intro .heading {
  width: 100%;
  margin: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 970px) {
  .intro .heading {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 3rem;
  }
}
.intro .heading .social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-right: 1rem;
}
.intro .heading .social a {
  color: white;
  transition: color 0.3s ease;
}
.intro .heading .social a:hover {
  color: var(--color-primary);
}
.intro .heading .social a svg {
  width: 2rem;
  height: 2rem;
}
.intro .heading .text {
  flex-grow: 1;
}
@keyframes showAndHidePulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}
.intro h1 {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 15rem;
  margin: 0;
  flex-grow: 1;
  line-height: 0.7;
}
@media (max-width: 860px) {
  .intro h1 {
    font-size: 10rem;
  }
}
@media (max-width: 600px) {
  .intro h1 {
    font-size: 6.25rem;
  }
}
.intro h1 :last-child {
  color: hsl(180, 33%, 10%);
  background-color: hsla(180, 33%, 70%, 0.464);
  padding: 0 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
}
.intro h1 :last-child::after, .intro h1 :last-child::before {
  pointer-events: none;
  position: absolute;
  top: 0;
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid black;
}
.intro h1 :last-child::after {
  right: 0;
  border-top: none;
  border-right: none;
}
.intro h1 :last-child::before {
  left: 0;
  border-top: none;
  border-left: none;
}
.intro h2 {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  font-size: 3rem;
  margin: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.3rem;
}
.intro h2 :nth-child(1) {
  color: var(--color-primary);
  position: relative;
}
.intro h2 :nth-child(1)::after {
  height: calc(100% + 8px);
  width: 6px;
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: 0;
  background: black;
  animation: showAndHidePulse 1s infinite;
}
@media (max-width: 860px) {
  .intro h2 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .intro h2 {
    font-size: 1.5rem;
  }
}

.websites {
  background: radial-gradient(circle at bottom right, var(--color-primary) 0%, var(--color-secondary) 75%), url("../images/Voronoi.png") no-repeat center center/cover, rgba(0, 0, 0, 0.287);
  background-blend-mode: multiply;
  position: relative;
}
.websites h2 {
  transform: rotate(90deg) translateY(-50%);
  transform-origin: left center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  font-size: 5rem;
  position: absolute;
  font-family: "Jersey 10", sans-serif;
}
.websites .content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.websites .types {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1200px;
}
@media (max-width: 600px) {
  .websites .types {
    grid-template-columns: 1fr;
  }
}
.websites .types div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  text-align: center;
  font-style: normal;
  cursor: pointer;
  transform-style: preserve-3d;
}
.websites .types div:hover {
  transform: rotateZ(1deg) scale(1.02);
}
.websites .types div:nth-child(1) {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.398) 50%, var(--color-secondary)) 100%;
}
.websites .types div:nth-child(1) svg {
  color: var(--color-primary);
}
.websites .types div:nth-child(2) {
  background: linear-gradient(to left bottom, rgba(0, 0, 0, 0.398) 50%, var(--color-primary)) 100%;
}
.websites .types div:nth-child(2) svg {
  color: var(--color-secondary);
}
.websites .types div:nth-child(3) {
  background: linear-gradient(to right top, rgba(0, 0, 0, 0.398) 50%, var(--color-primary)) 100%;
}
.websites .types div:nth-child(3) svg {
  color: var(--color-secondary);
}
.websites .types div:nth-child(4) {
  background: linear-gradient(to left top, rgba(0, 0, 0, 0.398) 50%, var(--color-secondary)) 100%;
}
.websites .types div:nth-child(4) svg {
  color: var(--color-primary);
}
.websites p {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--color-primary);
}
@media (max-width: 550px) {
  .websites p {
    font-size: 1rem;
  }
}

.backend {
  background: radial-gradient(circle at top left, var(--color-primary) 0%, var(--color-secondary) 75%), url("../images/Meta-balls.png") no-repeat center center/cover, rgba(0, 0, 0, 0.287);
  background-blend-mode: multiply;
  position: relative;
}
.backend h2 {
  transform: rotate(90deg) translate(-50%, -50%);
  transform-origin: left left;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  font-size: 5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Jersey 10", sans-serif;
}
.backend p {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 50%;
  color: white;
}
@media (max-width: 550px) {
  .backend p {
    font-size: 1rem;
  }
}

.android {
  background: radial-gradient(circle at bottom left, var(--color-primary) 0%, var(--color-secondary) 75%), url("../images/Random-static.png") no-repeat center center/cover, rgba(0, 0, 0, 0.287);
  background-blend-mode: darken;
  position: relative;
}
.android h2 {
  transform: rotate(90deg) translateY(-50%);
  transform-origin: left center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  font-size: 5rem;
  position: absolute;
  font-family: "Jersey 10", sans-serif;
}
.android p {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
}
@media (max-width: 550px) {
  .android p {
    font-size: 1rem;
  }
}

.delius-swash-caps-regular {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

.doto {
  font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "ROND" 0;
}/*# sourceMappingURL=new.css.map */