@import url("https://fonts.googleapis.com/css?family=Sacramento&display=swap");
@font-face {
  font-family: "main";
  src: url("anybody.ttf") format("truetype");
}
html {
  height: 100%;
  font-family: main;
  color: white;
}

body {
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(43, 49, 115) 0%, rgb(4, 0, 4) 90%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  padding: 0;
  margin: 0;
}

.background-container {
  display: flex;
  flex-direction: column;
  z-index: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.background-container .moving-div {
  width: 100%;
  min-height: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.background-container .white-bar {
  background-color: white;
  height: 10px;
  width: 90%;
}
.background-container .move-left {
  animation: move_to_left 5s infinite;
}
.background-container .move-right {
  animation: move_to_right 5s infinite;
}

.neon {
  text-shadow: 0 0 5px #0062ff, 0 0 15px #0062ff, 0 0 20px #0062ff, 0 0 40px #0062ff, 0 0 60px #1100ff, 0 0 10px #0062ff, 0 0 98px #1100ff;
  color: #faf9f0;
  animation: blink 12s infinite;
  -webkit-animation: blink 12s infinite;
}

.titles {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
  text-align: center;
}
.titles .logo {
  width: 100%;
  font-size: 4rem;
  text-align: center;
  font-family: "Sacramento", cursive;
}
.titles .input {
  border: solid 0.8px white;
  background-color: transparent;
  color: white;
  height: 2rem;
  font: main;
}
.titles .mail {
  width: 20%;
  height: 20%;
}
.titles .w-100 {
  width: 100%;
}

.content {
  background-color: white;
}

.landing-zone {
  position: fixed;
  height: 100%;
}

.footer {
  width: 100%;
  text-align: center;
  height: 20%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.card {
  border-radius: 2px;
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5%;
}
.card .image {
  background-size: cover;
  background-position: center;
  width: 70vh;
  height: 30vh;
  margin: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}
.card .desk-bg {
  background-image: url("./images/desk.jpg");
}
.card .marketing-bg {
  background-image: url("./images/marketing.jpg");
}
.card .mac-bg {
  background-image: url("./images/mac.jpg");
}
.card .legend {
  min-height: 45%;
  left: -60px;
  padding: 20px;
  color: black;
  position: relative;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.27);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.card .legend-left {
  left: unset;
  right: -60px;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  flex-direction: column;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup [active] {
  opacity: 1;
  transition: opacity 1s;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 1vh;
  align-items: center;
  justify-content: center;
}
.row label {
  width: 40%;
}
.row select {
  width: 40%;
}

@keyframes move_to_right {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes move_to_left {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes blink {
  20%, 24%, 55% {
    color: #111;
    text-shadow: none;
  }
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    /*     color: #fccaff;
    text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
      0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */
    text-shadow: 0 0 5px #0062ff, 0 0 15px #0062ff, 0 0 20px #0062ff, 0 0 40px #0062ff, 0 0 60px #1100ff, 0 0 10px #0062ff, 0 0 98px #1100ff;
    color: #faf9f0;
  }
}
@keyframes font-size {
  0% {
    font-variation-settings: "slnt" -10, "wght" 100, "wdth" 150;
  }
  50% {
    font-variation-settings: "slnt" -10, "wght" 200, "wdth" 150;
  }
  100% {
    font-variation-settings: "slnt" -10, "wght" 100, "wdth" 150;
  }
}
@media screen and (min-width: 768px) {
  .background-container {
    width: 100%;
  }
  .background-container .moving-div {
    min-height: 10px;
    padding-bottom: 20vh;
  }
  .card .image {
    width: 150vh;
    height: 50vh;
  }
  .card .legend {
    font-size: 2rem;
    min-height: 20vh;
  }
  .content {
    padding: 2% 10%;
  }
}/*# sourceMappingURL=style.css.map */