*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(background.jpg);
    background-size: cover;
    background-position: center;
    padding: 10px 10%;
    color: #fff;
    overflow-y: scroll;
}
.hero h3{
    margin-top: 15%;
    font-weight: 400;
    font-size: 40px;
    color: #61b752;
}
.hero h1{
    margin-top: 30px;
    font-size: 50px;
}
.hero p{
    margin: 20px 0 10px;
}
form{
    background-color: #fff;
    display: flex;
    width: fit-content;
    
    
}
form input{
    border: 0;
    padding: 10px 20px;
    height: 70px;
    width: 100%;
    font-size: 20px;
    
}
form button{
    background-color: #61b752;
    border: none;
    outline: none;
    height: 70px;
    width: 100px;
    cursor: pointer;
}
i{
    font-size: 50px;
    color: white;
}
span{
    color: #61b752;
    margin-top: 10px;
    display: block;
}
.rocket{
    width: 250px;
    position: absolute;
    right: 10%;
    bottom: 0;
    animation: rocket 4s linear infinite;
}
@keyframes rocket{
    0%{
        width: 10px;
        bottom:0;
        opacity: 0;
    }
    100%{
        width: 400px;
        bottom: 105%;
        opacity: 1;
    }
}
p{
    text-transform: capitalize;
}
.launch-time{
    display: flex;
    text-align: center;
}
.launch-time div{
    flex-basis: 100px;
}
.launch-time div p{
    font-size: 60px;
    margin-bottom:-10px;
}
