@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
body {
    background-image: url('images/space.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: none;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 0;
    margin: 0;
}

.earth {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.container {
    width: 100%;
    height: 95%;
    text-align: center;
    padding-top: 13%;
    box-sizing: border-box;
}

.steveContainer {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.steve {
    max-width: 210px;
    width: 40%;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    animation: MoveUpDown 3s linear infinite;
}

h1 {
    font-family: Roboto;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    text-align:center;
    box-sizing: border-box;
    padding: 20px 100px 20px 100px;
    font-size: 1.5em;
    z-index: 3;
    position: relative;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
}