* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes colorswag {
  100% {
    color: #022050;
  }
}
@keyframes popup {
  50% {
    color: #ff0ace;
  }
  100% {
    color: #e9ebf8;
  }
}
@keyframes popup2 {
  80% {
    text-shadow: 1px 1px 1px rgba(233, 235, 248, 0.5019607843);
  }
  100% {
    color: #ff0ace;
    text-shadow: 1px 1px 2px rgba(233, 235, 248, 0.5019607843);
  }
}
@keyframes breathing {
  25% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.9);
  }
}
b:nth-child(1) {
  animation: colorswag 2s 0.05s 2;
}

b:nth-child(2) {
  animation: colorswag 2s 0.1s 2;
}

b:nth-child(3) {
  animation: colorswag 2s 0.15s 2;
}

b:nth-child(4) {
  animation: colorswag 2s 0.2s 2;
}

b:nth-child(5) {
  animation: colorswag 2s 0.25s 2;
}

b:nth-child(6) {
  animation: colorswag 2s 0.3s 2;
}

b:nth-child(7) {
  animation: colorswag 2s 0.35s 2;
}

b:nth-child(8) {
  animation: colorswag 2s 0.4s 2;
}

b:nth-child(9) {
  animation: colorswag 2s 0.45s 2;
}

b:nth-child(10) {
  animation: colorswag 2s 0.5s 2;
}

b:nth-child(11) {
  animation: colorswag 2s 0.55s 2;
}

b:nth-child(12) {
  animation: colorswag 2s 0.6s 2;
}

b:nth-child(13) {
  animation: colorswag 2s 0.65s 2;
}

b:nth-child(14) {
  animation: colorswag 2s 0.7s 2;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.199)), url(../img/bg.jpeg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  font-family: "Kanit", sans-serif;
  color: #e9ebf8;
}

.navbar {
  width: 10vw;
  height: 100vh;
  background-image: linear-gradient(to top, rgba(2, 32, 80, 0.5019607843), rgba(23, 41, 96, 0.5019607843), rgba(40, 50, 112, 0.5019607843), rgba(58, 59, 128, 0.5019607843), rgba(76, 68, 144, 0.5019607843), rgba(94, 72, 158, 0.5019607843), rgba(113, 76, 172, 0.5019607843), rgba(134, 79, 184, 0.5019607843), rgba(162, 75, 195, 0.5019607843), rgba(192, 66, 202, 0.5019607843), rgba(223, 51, 206, 0.5019607843), rgba(255, 10, 206, 0.5019607843));
  position: fixed;
  -webkit-box-shadow: 2px 5px 16px 0px #0b325e, 7px 5px 0px 5px rgba(210, 110, 255, 0);
  box-shadow: 2px 5px 16px 0px #0b325e, 7px 5px 0px 5px rgba(210, 110, 255, 0);
}
.navbar .nav-logo {
  background-image: url(../img/logo_transparent.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 32.5vh;
  border-bottom: 1px solid #e9ebf8;
}
.navbar .nav-main {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.navbar .nav-main li {
  list-style-type: none;
  text-align: center;
  width: 10vw;
  border-bottom: 1px solid #e9ebf8;
  padding: 2em 0.5em;
}
.navbar .nav-main li a {
  text-decoration: none;
  color: #e9ebf8;
  font-size: larger;
}
.navbar .nav-main li::before {
  content: "<li> ";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.navbar .nav-main li::after {
  content: " </li>";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.navbar .nav-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12.5vh;
}
.navbar .nav-contact .fa-brands {
  font-size: 2em;
  padding: 0.25em;
  color: #e9ebf8;
}

main {
  position: absolute;
  left: 10vw;
  height: 100vh;
  width: 90%;
}

.home,
.about,
.skills,
.work,
.contact {
  height: 80vh;
  width: 100%;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: last baseline;
  justify-content: flex-end;
  padding-right: 8em;
}
.home span {
  color: transparent;
}
.home h1 {
  font-size: 4em;
}
.home h1::before {
  content: "<h1> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.home h1::after {
  content: " </h1>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.home span:nth-child(1) {
  animation: popup2 1s 0.1s forwards;
}
.home span:nth-child(2) {
  animation: popup2 1s 0.2s forwards;
}
.home span:nth-child(3) {
  animation: popup2 1s 0.3s forwards;
}
.home span:nth-child(4) {
  animation: popup2 1s 0.4s forwards;
}
.home span:nth-child(5) {
  animation: popup2 1s 0.5s forwards;
}
.home span:nth-child(6) {
  animation: popup2 1s 0.6s forwards;
}
.home span:nth-child(7) {
  animation: popup2 1s 0.7s forwards;
}
.home span:nth-child(8) {
  animation: popup2 1s 0.8s forwards;
}
.home span:nth-child(9) {
  animation: popup2 1s 0.9s forwards;
}
.home span:nth-child(10) {
  animation: popup2 1s 1s forwards;
}
.home span:nth-child(11) {
  animation: popup2 1s 1.1s forwards;
}

.hover-line {
  position: relative;
}

.hover-line::before,
.hover-line::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #e9ebf8;
  transition: all 0.3s ease;
}

.hover-line::before {
  top: 0;
  left: 0;
}

.hover-line::after {
  bottom: 0;
  right: 0;
}

.hover-line:hover::before {
  width: 100%;
}

.hover-line:hover::after {
  width: 100%;
  right: 0;
  left: initial;
}

.contactme {
  font-size: 1.25em;
  padding: 1em 2em;
  border: 1px solid rgba(233, 235, 248, 0.5019607843);
  background-color: rgba(255, 255, 255, 0.1568627451);
  border-radius: 0.5em;
  color: #e9ebf8;
  text-decoration: none;
  align-self: self-end;
  margin: 1em 0;
  transition: 0.25s;
  animation: breathing 8s infinite;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.contactme:hover {
  color: #ff0ace;
  border-color: #ff0ace;
  animation-play-state: paused;
}
.contactme:active {
  transform: translateY(2px) translateX(2px);
  box-shadow: none;
}

.about-head {
  text-align: center;
  font-size: 3em;
  padding: 0.5rem;
}
.about-head:before {
  content: "<h2> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.about-head:after {
  content: " </h2>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.about-head a {
  text-decoration: none;
}
.about-head span {
  color: transparent;
}
.about-head span:nth-child(1) {
  animation: popup 1s 0.1s forwards;
}
.about-head span:nth-child(2) {
  animation: popup 1s 0.2s forwards;
}
.about-head span:nth-child(3) {
  animation: popup 1s 0.3s forwards;
}
.about-head span:nth-child(4) {
  animation: popup 1s 0.4s forwards;
}
.about-head span:nth-child(5) {
  animation: popup 1s 0.5s forwards;
}
.about-head span:nth-child(6) {
  animation: popup 1s 0.6s forwards;
}
.about-head span:nth-child(7) {
  animation: popup 1s 0.7s forwards;
}
.about-head span:nth-child(8) {
  animation: popup 1s 0.8s forwards;
}
.about-head span:nth-child(9) {
  animation: popup 1s 0.9s forwards;
}
.about-head span:nth-child(10) {
  animation: popup 1s 1s forwards;
}
.about-head span:nth-child(11) {
  animation: popup 1s 1.1s forwards;
}
.about-head span:nth-child(12) {
  animation: popup 1s 1.2s forwards;
}
.about-head span:nth-child(13) {
  animation: popup 1s 1.3s forwards;
}
.about-head span:nth-child(14) {
  animation: popup 1s 1.4s forwards;
}
.about-head span:nth-child(15) {
  animation: popup 1s 1.5s forwards;
}
.about-head span:nth-child(16) {
  animation: popup 1s 1.6s forwards;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 2em;
  height: 100vh;
}
.container .content-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1em;
  flex-wrap: wrap;
}
.container .about {
  flex-direction: column;
  justify-content: center;
  height: auto;
  width: 15em;
  padding: 0.5em;
  font-size: 1.5em;
  background-color: rgba(0, 0, 0, 0.3568627451);
  border-radius: 0.5em;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.container .about p {
  padding: 0.5em;
}
.container .about p:before {
  content: "<p> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.container .about p:after {
  content: " </p>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.container .about span {
  color: transparent;
}
.container .about span:nth-child(1) {
  animation: popup 1s 0.1s forwards;
}
.container .about span:nth-child(2) {
  animation: popup 1s 0.2s forwards;
}
.container .about span:nth-child(3) {
  animation: popup 1s 0.3s forwards;
}
.container .about span:nth-child(4) {
  animation: popup 1s 0.4s forwards;
}
.container .about span:nth-child(5) {
  animation: popup 1s 0.5s forwards;
}
.container .about span:nth-child(6) {
  animation: popup 1s 0.6s forwards;
}
.container .about span:nth-child(7) {
  animation: popup 1s 0.7s forwards;
}
.container .about span:nth-child(8) {
  animation: popup 1s 0.8s forwards;
}
.container .about span:nth-child(9) {
  animation: popup 1s 0.9s forwards;
}
.container .about span:nth-child(10) {
  animation: popup 1s 1s forwards;
}
.container .about span:nth-child(11) {
  animation: popup 1s 1.1s forwards;
}
.container .about span:nth-child(12) {
  animation: popup 1s 1.2s forwards;
}
.container .about span:nth-child(13) {
  animation: popup 1s 1.3s forwards;
}
.container .about span:nth-child(14) {
  animation: popup 1s 1.4s forwards;
}
.container .about span:nth-child(15) {
  animation: popup 1s 1.5s forwards;
}
.container .about span:nth-child(16) {
  animation: popup 1s 1.6s forwards;
}
.container .about h2:before {
  content: "<h2> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.container .about h2:after {
  content: " </h2>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}

.skills {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.skills .card {
  position: relative;
  width: 350px;
  height: 420px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.8s;
}
.skills .card:hover .front {
  transform: rotateY(-180deg);
}
.skills .card:hover .back {
  transform: rotateY(0deg);
}
.skills .card .front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s;
  border-radius: 0.5em;
  background-color: rgba(0, 0, 0, 0.3568627451);
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.skills .card .front img {
  width: 300px;
  height: 300px;
  padding: 1em;
}
.skills .card .front h2,
.skills .card .front p {
  padding: 0.5em;
}
.skills .card .front h2:before {
  content: "<h2> ";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .front h2:after {
  content: " </h2>";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .front h3:before {
  content: "<h3> ";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .front h3:after {
  content: " </h3>";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .front p {
  font-size: 1.25em;
}
.skills .card .front p:before {
  content: "<p> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .front p:after {
  content: " </p>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3568627451);
  transition: transform 0.8s;
  border-radius: 0.5em;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  transform: rotateY(180deg);
  padding: 1em;
}
.skills .card .back h2 {
  padding: 1em;
}
.skills .card .back h2:before {
  content: "<h2> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .back h2:after {
  content: " </h2>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .back h3:before {
  content: "<h3> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .back h3:after {
  content: " </h3>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .back p {
  color: rgba(233, 235, 248, 0.5019607843);
  font-size: 1.25em;
}
.skills .card .back p:before {
  content: "<p> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills .card .back p:after {
  content: " </p>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}

.skills-head {
  text-align: center;
  font-size: 3em;
  padding: 0.5rem;
}
.skills-head:before {
  content: "<h2> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.skills-head:after {
  content: " </h2>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}

.work-head {
  text-align: center;
  font-size: 3em;
  padding: 0.5rem;
}
.work-head:before {
  content: "<h2> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.work-head:after {
  content: " </h2>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}

.work-container {
  display: flex;
  width: 100%;
  height: 80%;
  justify-content: space-around;
  align-items: center;
  gap: 1em;
  overflow: hidden;
}
.work-container .work {
  padding: 0.5em;
  width: 375px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3568627451);
  border-radius: 0.5em;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.work-container .work img {
  width: 350px;
  height: auto;
  object-fit: contain;
  margin: 1em 0;
}
.work-container .work h2:before {
  content: "<h2> ";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.work-container .work h2:after {
  content: " </h2>";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.work-container .work a {
  text-decoration: none;
  color: #e9ebf8;
  font-size: larger;
  margin: 0.5em;
  transition: 0.25s;
  border-bottom: 1px solid rgba(233, 235, 248, 0.5019607843);
}
.work-container .work a:before {
  content: "<a> ";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.work-container .work a:after {
  content: " </a>";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.work-container .work a:hover {
  color: #ff0ace;
}
.work-container .work p:before {
  content: "<p> ";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.work-container .work p:after {
  content: " </p>";
  font-size: 0.75em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}

.contact {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 1em;
  gap: 1em;
}
.contact .contactcontainer {
  display: grid;
  padding: 0.5em;
  height: 575px;
  width: 600px;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  border-radius: 0.5em;
  background-color: rgba(0, 0, 0, 0.3568627451);
}
.contact .contactcontainer form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.5fr 0.5fr 1fr;
  grid-template-areas: "name email" "betreff betreff" "nachricht nachricht" "button button";
  grid-column-gap: 1em;
  padding: 2em;
  font-size: 1.5em;
}
.contact .contactcontainer form .name {
  grid-area: name;
  display: flex;
  flex-direction: column;
}
.contact .contactcontainer form .email {
  grid-area: email;
  display: flex;
  flex-direction: column;
}
.contact .contactcontainer form .betreff {
  grid-area: betreff;
  display: flex;
  flex-direction: column;
}
.contact .contactcontainer form .nachricht {
  grid-area: nachricht;
  display: flex;
  flex-direction: column;
}
.contact .contactcontainer form .button {
  grid-area: button;
  padding: 1em 2em;
  border: 1px solid rgba(233, 235, 248, 0.5019607843);
  border-radius: 0.5em;
  color: #e9ebf8;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  position: relative;
}
.contact .contactcontainer form .button:hover {
  color: #ff0ace;
  border-color: #ff0ace;
}
.contact .contactcontainer form .button:active {
  transform: translateY(2px) translateX(2px);
  box-shadow: none;
}
.contact .contactcontainer form input,
.contact .contactcontainer form textarea {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: 0.25em;
  background-color: rgba(0, 0, 0, 0.1215686275);
  resize: none;
  border: 1px solid transparent;
  outline: none;
}
.contact .contactcontainer form input:active, .contact .contactcontainer form input:focus, .contact .contactcontainer form input:hover,
.contact .contactcontainer form textarea:active,
.contact .contactcontainer form textarea:focus,
.contact .contactcontainer form textarea:hover {
  border: 1px solid #ff0ace;
}
.contact .contactcontainer form input::placeholder,
.contact .contactcontainer form textarea::placeholder {
  color: rgba(233, 235, 248, 0.5019607843);
  font-family: "Kanit", sans-serif;
}
.contact .iframe iframe {
  height: 575px;
  width: 600px;
  border-radius: 0.5em;
  -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.contact-head {
  text-align: center;
  font-size: 3em;
  padding: 0.5rem;
}
.contact-head:before {
  content: "<h2> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.contact-head:after {
  content: " </h2>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}

.contact-foot {
  text-align: center;
  font-size: 3em;
  padding: 0.5rem;
  font-size: 1.5em;
  font-weight: lighter;
}
.contact-foot:before {
  content: "<p> ";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.contact-foot:after {
  content: " </p>";
  font-size: 0.5em;
  font-family: "VT323", monospace;
  color: rgba(233, 235, 248, 0.5019607843);
}
.contact-foot .fa-regular {
  font-size: 0.75em;
}

@media screen and (max-width: 1440px) {
  body {
    background-position: center;
    position: relative;
    z-index: 1;
  }
  main {
    padding-top: 12.5vh;
    position: initial;
    left: initial;
    height: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .home,
  .about,
  .skills,
  .work,
  .contact {
    height: auto;
    width: 100%;
  }
  .navbar {
    width: 100%;
    height: auto;
    top: 0;
    display: flex;
    flex-direction: row;
    position: fixed;
    z-index: 2;
    justify-content: space-between;
    background-color: rgba(32, 32, 32, 0.8549019608);
    background-image: linear-gradient(to right, rgba(2, 32, 80, 0.5019607843), rgba(23, 41, 96, 0.5019607843), rgba(40, 50, 112, 0.5019607843), rgba(58, 59, 128, 0.5019607843), rgba(76, 68, 144, 0.5019607843), rgba(94, 72, 158, 0.5019607843), rgba(113, 76, 172, 0.5019607843), rgba(134, 79, 184, 0.5019607843), rgba(162, 75, 195, 0.5019607843), rgba(192, 66, 202, 0.5019607843), rgba(223, 51, 206, 0.5019607843), rgba(255, 10, 206, 0.5019607843));
  }
  .navbar .nav-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .navbar .nav-main li {
    list-style-type: none;
    text-align: center;
    width: auto;
    border-bottom: none;
    padding: 1em;
  }
  .navbar .nav-logo {
    width: 10vw;
    height: auto;
    border-bottom: none;
  }
  .navbar .nav-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 1em;
  }
  .navbar .nav-contact .fa-brands {
    font-size: 2em;
    padding: 0.25em;
    color: #e9ebf8;
  }
  .homecontainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home {
    padding: 1em;
    margin-left: 0.5em;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-right: 0;
    color: #e9ebf8;
  }
  .home span {
    color: #ff0ace;
    display: inline-block;
  }
  .home span:hover {
    animation: none;
  }
  .home h1 {
    font-size: 3em;
    margin-left: 2em;
  }
  .contactme {
    margin: 1em 0 1em 1em;
    margin-left: 8em;
    padding: 0.5em 1em;
    text-decoration: none;
    align-self: flex-start;
    transition: 0.25s;
    -webkit-box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    box-shadow: -10px 0px 13px -7px #000000, 10px 0px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  }
  .contactme:hover {
    color: #ff0ace;
    border-color: #ff0ace;
  }
  .contactme:active {
    transform: translateY(2px) translateX(2px);
    box-shadow: none;
  }
  .container {
    gap: 1em;
    padding: 0.5em;
    height: auto;
  }
  .container .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1em;
    flex-wrap: wrap;
  }
  .container .content-container .about {
    width: auto;
  }
  .work-container {
    flex-wrap: wrap;
  }
  .work-container .hidden {
    display: none;
  }
  .contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    gap: 1em;
  }
  .contact .contactcontainer {
    width: 100%;
    height: 100%;
    padding: 1em;
  }
  .contact .contactcontainer form {
    grid-template-columns: 550px;
    grid-template-rows: 0.5fr 0.5fr 0.5fr 1fr 0.5fr;
    grid-template-areas: "name" "email" "betreff" "nachricht" "button";
    grid-column-gap: 0;
  }
  .contact .contactcontainer .button {
    padding: 0.5em 1em;
    border: 1px solid rgba(233, 235, 248, 0.5019607843);
    border-radius: 0.5em;
    color: #e9ebf8;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
  }
  .contact .contactcontainer input,
  .contact .contactcontainer textarea {
    margin-top: 0.5em;
    padding: 0.25em;
  }
  .iframe iframe {
    display: none;
  }
}
@media screen and (min-width: 100px) and (max-width: 1024px) {
  body {
    font-size: 0.8em;
  }
  main {
    padding-top: 25vh;
  }
  .navbar {
    justify-content: space-between;
  }
  .navbar .nav-main {
    flex-direction: column;
    padding: 0;
  }
  .navbar .nav-main li {
    padding: 0;
  }
  .navbar .nav-logo {
    width: 25vw;
  }
  .navbar .nav-contact {
    flex-direction: column;
    align-items: center;
    width: 25vw;
  }
  .navbar .nav-contact .fa-brands {
    font-size: 1.5em;
  }
  .home {
    justify-content: center;
    align-items: flex-start;
    padding-right: 0;
  }
  .home h1 {
    font-size: 1.5em;
    margin-left: 0;
  }
  .home .contactme {
    margin-left: 1em;
  }
  .contact .contactcontainer {
    padding: 0.5em;
    font-size: 1.25em;
  }
  .contact .contactcontainer form {
    padding: 0.5em;
    grid-template-columns: 350px;
  }
}
