body {
  margin: 0;
  width: auto;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: white;
  background-image: linear-gradient(navy, black);
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

h2,
h3 {
  margin-top: 0;
}
h1 {
  font-size: 80px;
  margin-bottom: 0;
}
h2 {
  font-size: 48px;
  margin-bottom: 0;
}
h3 {
  font-size: 24px;
  margin-top: 0;
}

header {
  position: fixed;
  width: 100%;
  font-weight: bold;
}
.header-el {
  display: flex;
  justify-content: flex-end;
}
header a {
  color: white;
  padding: 10px;
  text-decoration: none;
  text-shadow: 2px 2px #000;
}

header a:hover {
  text-decoration: underline;
  color: rgb(132, 143, 247);
}

footer {
  display: flex;
  justify-content: space-around;
}

.container,
.wrapper {
  margin: 0 auto;
  /* max-width: 1200px; */
}

/* text decoration */
#otto {
  font-size: 100px;
  color: white;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9,
    0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2),
    0 20px 20px rgba(0, 0, 0, 0.15);
}

/* text decoration-end */

/* animation */
.neonText {
  color: #fff;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa,
    0 0 82px #0fa, 0 0 92px #0fa, 0 0 102px #0fa, 0 0 151px #0fa;
}

.arrow {
  animation: flicker 1.5s infinite alternate;
}
.arrow a {
  text-decoration: none;
  color: white;
}

/* Flickering animation */
@keyframes flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff, 0 0 40px #0fa,
      0 0 80px #0fa, 0 0 90px #0fa, 0 0 100px #0fa, 0 0 150px #0fa;
  }

  20%,
  24%,
  55% {
    text-shadow: none;
  }
}

/* animation-end*/

.name,
.projects,
.contact {
  padding: 25px;
  width: auto;
  margin: 0 auto;
}

.name {
  padding: 34vh 0;
}

.contact {
  padding: 30vh 0;
  max-width: 800px;
}
.contact a,
.webpages a {
  text-decoration: none;
  color: white;
  margin: 5px;
  min-width: 60px;
}
.contact a {
  transition: all 0.2s ease-in-out;
}
.contact a:hover {
  transform: scale(1.1);
}

#projects h2 {
  margin-bottom: 50px;
}
.webpages {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.webpages img {
  width: 400px;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  transition: all 0.2s ease-in-out;
}
.webpages img:hover {
  transform: scale(1.1);
}

.social {
  padding-top: 50px;
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  flex-wrap: wrap;
}

.social a {
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 2px 1px,
    rgba(255, 255, 255, 0.3) 0px 4px 2px, rgba(255, 255, 255, 0.3) 0px 8px 4px,
    rgba(204, 201, 201, 0.473) 0px 16px 8px,
    rgba(155, 155, 155, 0.2) 0px 2px 2px;
  padding: 10px;
}
.social a:hover {
  box-shadow: rgba(243, 243, 243, 0.541) 0px 30px 60px -12px inset,
    rgba(247, 247, 247, 0.445) 0px 18px 36px -18px inset;
}

.button {
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: rgba(255, 255, 255, 0.541) 0px 5px 15px;
}
.button:hover {
  box-shadow: rgba(243, 243, 243, 0.541) 0px 30px 60px -12px inset,
    rgba(247, 247, 247, 0.445) 0px 18px 36px -18px inset;
}
