@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}
body{
    background: linear-gradient(black,#0b1d57);
    font-family: "Acme", sans-serif;
}

.paralax{
    position: relative;
    width: 100%;
    height: 200vh;
    padding: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.paralax::before{
    content: ;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background:linear-gradient(to top,#c4c2c3,transparent);
    z-index: 1000;

}
.paralax img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    

}

#text{
    position: absolute;
    font-size: 4,8;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 5px 8px 15px black;
    bottom: 1000px;

}
.paralax img meteorid{
    z-index: 100;
}
#button{
    position: absolute;
    font-size: 2em;
    color: rgb(255, 255, 255);
    background-color: rgb(30, 51, 109);
    padding: 10px 50px;
    border-radius: 30px;
    text-decoration:none ;
    transform: translateY(195px);
    bottom: 1100px;
}
.description{
    position: relative;
    padding: 10em;
    background-color: #b4b4b4;
}
.description p{
  font-size: 1.6em;
  
}
