@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/*050912 */

body {
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   background-color: #050912;
   color: #FFFFFF;
   font-family: "Orbitron", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 50px;
    
}

header nav ul {
    display: flex;
   
}

header nav ul li {
    padding: 10px 30px;
    list-style-type: none;
    border-radius: 10px;
}
header nav ul li:hover {
    background-color: #8A2BE2;
}



.background-container {
 background:  linear-gradient(
      rgba(0, 0, 0, 0.6),   /* top overlay color */
      rgba(0, 0, 0, 0.7)    /* bottom overlay color */
    ),url(/sci-fi-image.png);
 background-size: cover;
 background-position: center;
    max-width: 1500px;
    margin: 0 auto;
    height: 1000px;
    /* font-family: "Bebas Neue", sans-serif; */
    font-family: "Orbitron", sans-serif;
}

.text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
   position: relative;
   right: 20%;
   bottom: 10%;
    height: 100%;
    justify-content: center;
    
    max-width: 500px;
}

.text h1 {
    font-size: 2.5rem;
   color: #18F6FF;
  text-shadow: 0 0 10px #18F6FF,
               0 0 20px #18F6FF,
               0 0 40px #18F6FF;
}

.text p {
    line-height: 2;
    letter-spacing: 1px;
}

button {
    background-color: #8A2BE2;
    color: #18F6FF;
    border: none;
    width: auto;
    max-width: 300px;
    padding: 20px 30px;
     font-family: "Orbitron", sans-serif;
     position: relative;
     top: 5%;
}

