body{
    position: relative;
}
.background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
header{
    display: flex;
    align-items: center;
}
.logo{
    width: 110px;
    margin-top: 16px;
    margin-left: 120px;
}
.main-container{
    margin-left: 120px;
    display: flex;
}
.content{
    margin-top: 210px;
}
.maintenance{
    font-size: 17.4px;
}
p, h1, .counter, .learn-more{
    color: white;
    font-family:Arial, Helvetica, sans-serif;
}
h1{
    margin-top: 0;
    font-size: 63px;
    margin-bottom: 20px;
}
.launch{
    color: red;
}
.timer{
    display: flex;
    gap: 25px;
}
.time{
    font-size: 60px;
    margin: 0;
}
.counter{
    margin-left: 3px;
}
.learn-more{
    margin-top: 35px;
    padding: 12px 20px 12px 20px;
    background-color: transparent;
    border: solid;
    border-width: 1px;
}
.learn-more:hover{
    cursor: pointer;
}
.loop{
    position: relative;
    left: 20%;
    height: 300px;
}
.rocket{
    position: absolute;
    width: 300px;
    animation-name: example;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes example{
    0%{
        top: 75%;
        opacity: 0;
    }
    25%{
        top: 50%;
        opacity: 1;
    }
    50%{
        top: 25%;
    }
    75%{
        top: 0%;
    }
    80%{
        opacity: 0;
        transform: opacity 0.1s;
    }
    100%{
        opacity: 0;
    }
}