@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
body {
  margin: 0;
  font-family: "Bebas Neue", cursive;
  background: #141414;
  background-size: cover;
  color: white;
}

html {
  scroll-behavior: smooth;
}

header {
  width: 100%;
  margin-bottom: 7%;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul li {
  flex: 9% 0;
  text-align: center;
  height: 30px;
  line-height: 30px;
  transition: all 0.2s;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0);
}

header nav ul li:hover {
  transform: translate(0px, 2px);
  border-top: 2px solid white;
  background: #404040;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
  letter-spacing: 1px;
}

header nav ul li.selected {
  text-decoration: underline;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  vertical-align: middle;
  transition: all 0.2s;
}

header nav img {
  position: absolute;
  transform: scale(0.25);
  top: -110px;
  left: -5%;
  margin: 25px;
}

main {
  width: 75%;
  margin: auto auto;
}
main a.go_back {
  color: white;
  text-decoration: none;
}
main h1 {
  width: 100%;
  text-align: center;
}
main a {
  color: white;
  letter-spacing: 1px;
  word-spacing: 3px;
}
main p{
  text-align: center;
  width:75%;
  margin: auto auto;
}
main img {
  width: 75%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
main h3 {
  width: 100%;
  text-align: center;
}
main .skill-list {
  display: flex;
  width: 75%;
  justify-content:center;
  margin-left: auto;
  margin-right: auto;
}
main .skill-list i {
  font-size: 25px;
  margin-left:5px;
}
main h3 {
  margin-top: 35px;
}
main .projectType {
  display: flex;
  width: 75%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
main .projectType i {
  font-size: 25px;
}
main .seeMore {
  margin-top: 55px;
  width: 100%;
  text-align: center;
}
main .seeMore a {
  color: white;
  letter-spacing: 1px;
  word-spacing: 3px;
}
main .seeMore iframe {
  width:75%;
  margin-left: auto;
  margin-right: auto;
}
main section.footer {
  padding-top: 85px;
  width: 75%;
  margin: auto auto;
}
main section.footer hr {
  width: 45%;
}
main section.footer p {
  text-align: center;
}