@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Poppins:wght@400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

nav {
  animation: floatIn 1.8s ease;
}

.logo {
  font-size: 2em;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  user-select: none;
  transition: all 0.9s ease;
  animation: floatIn 1.8s ease;
}

.logo:hover {
  color: rgb(0, 255, 255);
}

.navigation a {
  position: relative;
  font-size: 1.3em;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 10px;
  padding: 2px 15px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.7s ease;
}

.navigation a:hover,
.navigation .active {
  color: #333;
  border: 2px solid #fff;
  background: rgb(0, 255, 255);
}

.navigation a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  z-index: -1;
  transform: scale(0);
  transition: 0.5s;
}

.navigation a:hover span,
.navigation a.active span {
  transform: scale(1);
  opacity: 1;
}

.parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("background.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#text {
  position: absolute;
  font-size: 5em;
  color: #1b283a;
  text-shadow: 2px 4px 5px #f9f9f9;
}

.parallax img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.parallax img#gate-left {
  position: fixed;
  transform: translateX(-282px);
}

.parallax img#gate-right {
  position: fixed;
  transform: translateX(305px);
}

.sec {
  position: relative;
  background: #020912;
  padding: 30px 100px;
}

.sec h2 {
  font-size: 3em;
  color: #fff;
}

.sec p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
  text-align: justify;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
