*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
}
header{
    width: 100vw;
    height: 100vh;
    background-image: url(images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 2% 10%;
    overflow: hidden;
}
h2{
    font-size: 1.9em;
    font-style: oblique;
}
.content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#wud{
    font-weight: 200;
    font-size: 2em;
}
.content h1{
    font-size: 3.8em;
    font-weight: 700;
    margin: .2em 0;
}
.content a{
    text-decoration:none;
    padding: 10px 15px;
    border: 1px solid #FFF;
    background: transparent;
    width: 14%;
    color: #FFF;
    font-weight: 300;
    position: relative;
    margin: 2em 0;
}
.content a img{
    width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}
.launch-time{
    display: flex;
}
.launch-time div{
    flex-basis: 100px;
}
.launch-time div p{
    font-size: 2.6em;
}
.rocket{
    width: 10em;
    position: absolute;
    right: 10%;
    bottom: 0;
    animation: rocket 4s linear infinite;
}
@keyframes rocket {
    0%{
        bottom: 0;
        opacity: 0;
    }
    100%{
        bottom: 105%;
        opacity: 1;
    }
}

@media only screen and (max-width: 600px) {
    body {
        font-size: 10px;
    }
    #wud {
        font-weight: 200;
        font-size: 1.2em;
    }
    .content h1 {
        font-size: 2.8em;
        font-weight: 700;
        margin: .2em 0;
    }
    .rocket {
        width: 5em;
        position: absolute;
        right: 5%;
        bottom: 0;
        animation: rocket 5s linear infinite;
    }
    .content a {
        width: 40%;
        border: 2px solid white;
    }
}