html {
  scroll-behavior: smooth;
}

* {
  font-family: "Raleway", sans-serif;
}

body {
  margin: 0;
  background: #000000;
  padding: 0;
  width: 100%;
}

h1 {
  font-family: "Poiret One", sans-serif;
  font-size: 55px;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #ffffff;
  transition: text-shadow 1s ease-out 2s;
  animation-name: neon;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

#profoto img {
  width: 150px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

h1:hover {
  transition: text-shadow 1s ease-out 0s;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff0000, 0 0 30px #ff0000,
    0 0 40px #ff0000, 0 0 55px #ff0000, 0 0 75px #ff0000;
}

h3 {
  text-align: center;
}

.work {
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #003cff, 0 0 30px #003cff,
    0 0 40px #003cff, 0 0 55px #003cff, 0 0 75px #003cff;
  color: #fff;
  font-family: "Poiret One", sans-serif;
  font-size: 40px;
  padding-top: 2%;
  animation-name: skillFade;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes skillFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes neon {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff0000, 0 0 30px #ff0000,
      0 0 40px #ff0000, 0 0 55px #ff0000, 0 0 75px #ff0000;
  }
  45% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff0000, 0 0 30px #ff0000,
      0 0 40px #ff0000, 0 0 55px #ff0000, 0 0 75px #ff0000;
  }
  50% {
    color: #ffffff;
  }
  95% {
    color: #ffffff;
  }
}

/* NAVBAR FIXED */

#nav {
  list-style: none;
  height: 60px;
  left: 0%;
  right: 0%;
  padding: 0;
  margin: 0;
  text-align: center;
  position: fixed;
  background-color: #000000;
  z-index: 2;
  top: 0;
}
#nav li {
  display: inline;
}
#nav a {
  display: inline-block;
  padding: 10px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: text-shadow 1s ease-out 0s;
}

#nav a:hover {
  opacity: 1;
  transition: 1s text-shadow ease;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #d44638, 0 0 30px #d44638,
    0 0 40px #d44638, 0 0 55px #d44638, 0 0 75px #d44638;
}

/* CONTENT */
.center {
  margin: 0 auto;
}

.content {
  padding-top: 10%;
  padding-bottom: 5%;
  margin: 0 auto;
  height: auto;
  width: 100%;
  background-color: #201c1c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: relative;
  margin-bottom: 70px;
  opacity: 1;
  color: #edeae5;
}

@media screen and (max-width: 800px) {
  .content {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .work {
    padding-bottom: 5%;
  }
  #about {
    padding: 5%;
    padding-top: 40%;
  }
}

#footer {
  height: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #f1f1f1;
  background: #000000;
  position: relative;
  padding-bottom: 5%;
  z-index: 0;
}

article p {
  margin-left: 20%;
  margin-right: 20%;
}

/* SCROLL FADE */
.fadein {
  opacity: 0;
}

/* KONTAKT */

.contact {
  text-align: center;
}

.contact a {
  text-decoration: none;
  text-align: center;
  padding: 5%;
  color: #ffffff;
}

.linkedin a {
  transition: color, text-shadow 1s ease-out 0s;
}

.linkedin a:hover {
  color: #ffffff;
  transition: 1s color, text-shadow ease;
  text-shadow: 0 0 5px #000000, 0 0 10px #000000, 0 0 20px #0e76a8,
    0 0 30px #0e76a8, 0 0 40px #0e76a8, 0 0 55px #0e76a8, 0 0 75px #0e76a8;
}
.github a {
  transition: color, text-shadow 1s ease-out 0s;
}
.github a:hover {
  color: #ffffff;
  transition: 1s color, text-shadow ease;
  text-shadow: 0 0 5px #000000, 0 0 10px #000000, 0 0 20px #f4cbb2,
    0 0 30px #f4cbb2, 0 0 40px #f4cbb2, 0 0 55px #f4cbb2, 0 0 75px #f4cbb2;
}

.email a {
  transition: color, text-shadow 1s ease-out 0s;
}
.email a:hover {
  color: #ffffff;
  transition: 1s color, text-shadow ease;
  text-shadow: 0 0 5px #000000, 0 0 10px #000000, 0 0 20px #d44638,
    0 0 30px #d44638, 0 0 40px #d44638, 0 0 55px #d44638, 0 0 75px #d44638;
}

/* PORTFOLIO */

.show1 {
  text-align: center;
}

#rogadev {
  margin: 0 auto;
  max-height: 200px;
  transition: transform 0.5s;
}

#rogadev:hover {
  transform: scale(1.2);
}

.show2 {
  text-align: center;
}

#navngen {
  margin: 0 auto;
  max-height: 150px;
  transition: transform 0.5s;
}

#navngen:hover {
  transform: scale(1.2);
}

#year {
  text-align: center;
  color: #eeea20;
  font-size: 25px;
}

#eduS {
  text-align: center;
  font-size: 20px;
}
#eduF {
  text-align: center;
  font-size: 15px;
}
h2 {
  text-align: center;
}
