@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Rubik+Scribble&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
*{
    
    /* background-image: url(bg.jpg); */
    width: 100%;    
    background-size: contain;

    margin: 0;
    padding: 0;
    bottom: 0;
    background-color:white;
    position: relative;
    background: transparent;
    
}

body{
    height: auto;
    width: 100%;
    background: transparent;
}
nav{
    position: relative;

    display: flex;
    flex-direction:row;
    /* justify-content: space-between; */
    align-items: baseline;
    font-family: sans-serif;
    font-weight: bold;


}
a{
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    /* align-items: first baseline; */
    
}
h1{
    font-family: "Rubik Scribble", system-ui;
    font-weight: bold;
    font-size: xx-large;
    color: white;
    
}
.box { 
    top: 60px;
    height: 600px;
    width: 1000px;
    margin: auto;
    padding: 10px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 15px;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: flex-start;
    background: rgb(255, 255, 255, 0.3);
    backdrop-filter: blur(.5px);
    z-index: 10;
    
}

#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Set the video container behind other content */
    overflow: hidden;
  }

  #video-background {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire container */
  }

  .astronaut img{
    width: 20%;
    animation: fadelnFromTop .5s linear forwards, floating ease 4s infinite;

  }



  
    @keyframes fadelnFromTop{
  from{
    opacity: 0;
    transform: translateY(-20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
}
    }
   
        @keyframes  floating{
            0%{
                transform: translate(0%,0%) rotate(360deg);
            }
            25%{
            transform: translate(5%, 5%) rotate(360deg);
        }    
             50%{
                transform: translate(5%,5%) rotate(360deg);
            }
            75%{
            transform: translate(0%, 5%) rotate(360deg);
        }
        100%{
            transform: translate(0%,0%) rotate(360deg);
        }
        }