*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	color: #e0e0e0;
	margin: 0;
	font-family: 'JetBrains Mono', 'Arial', sans-serif;
  font-size: 16px;
	background-image: url('../images/bg1.png');
	background-color: #000;
	background-repeat: no-repeat;
  background-size: cover;
  
}

  .navBar{
	  width: 100%;
	  height: 68px;
	  margin-bottom: 20px;
	  position: fixed;
	  font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid #e5e5e5;
    backdrop-filter: blur(2rem);
    top: 0;
    
    
	
}

  .navBar > a > img {
    height: 49px;
    width: auto;
    position: absolute;
    left: 1rem;
    top: .55rem;
}
  
  .navBar > ul {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 2rem;
    height: 100%;
    /*filter: blur(4px)*/
  }
  
  .navBar > ul > li {
    display: inline-block;
    height: 100%;
    padding: 0 .4rem 0 .4rem;
  }
  
  .navBar > ul > li > a {
    margin-top: 1.5rem;
    display: inline-block;
  }

  .navBar > ul > li > a:link {
    color: #fff;
    text-decoration: none;
  }
  
  .navBar > ul > li > a:hover {
    color: #3280da;
    text-decoration: none;
  }
  
  .navBar > ul > li > a:active {
    color: #e5e5e5;
    text-decoration: none;
  }
  
  .navBar > ul > li > a:visited {
    color: #fff;
    text-decoration: none;
    /*filter: blur(4px)*/
  }
.filter{
  width: 100%;
  height: 68px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.1rem;

}
.hero {
  width: 960px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 7rem auto 5rem auto;
  top: 0;
  }

.rocketLine {
  width: auto;
  height: 427px;
  position: relative;
  left: 12rem;
  top: -12rem;
  overflow: clip;

  }
  .rocketLine:hover{
    clip: auto;

  }

h1 {
  color: #fff;
  font-weight: lighter;
  font-size: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  }

h2 {
  color: #fff;
  margin: 1rem;
  }

.lower {
  display: block;
  font-size: 15rem;
  margin-top: -50px;
  padding-right: 1rem;
  }

.line {
  height: 2px;
  width: 25rem;
  margin-top: -35px;
  border-bottom: 2px solid #fff;
  font-size: 1px;
  
  }
  @keyframes move{
    from {top: 0px;}
    to {top: 200px;}

  }