*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(images/background.png);
    height: 100vh;
}
.logo{
    width: 150px;
    margin-top: 10px;
}
.row  h2{
    color: orange;
    font-size: 34px;
}
.row p{
    color: white;
    font-size: 34px;
}
.row{
    padding: 10px;
}
h1 span{
    color: orange;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}
h1{
    padding: 10px;
    margin-top: 40px;
    color:white;
}
.division{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.learnmore{
    background: transparent;
    border: 2px solid white;
    color: orange;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}
.learnmore img{
    width: 30px;
}
.learnmore:hover{
    background-color: orange;
    color: black;
    border: 2px solid orange;
}
.rocket{
    width: 250px;
    position: absolute;
    right: 10%;
    bottom: 0;
    animation: rocket 4s linear infinite;
}
@keyframes rocket {
    0%{
        bottom: 0;
        opacity: 0.4;
    }
    100%{
        bottom: 105%;
        opacity: 1;
    }
}