#home {
    background-image: url('/storage/app/media/home/stars.jpg');
    border-bottom: #484848 1rem solid;
    display: flex;
}

#home:before, #home:after {
    content: none;
}

#home .blue-planet {
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    left: -5%;
    width: 50%;
    min-width: 200px;
    z-index: 0;
}

#home .city {
    position: absolute;
    right: 5%;
    bottom: -0.5rem;
    min-width: 200px;
    z-index: 0;
}

#home .container {
    max-width: 35rem;
    width: 100%;
    align-self: end;
    margin: 0 auto 5rem auto;
    padding: 0 1.5rem;
    align-self: flex-end;
}

#home .logo {
    width: 100%;
    margin-bottom: -12%;
    z-index: 1;
    display: none;
}

@media (max-width: 768px) {
    #home .logo {
        display: block;
    }
}

#home .container p {
    position: relative;
    z-index: 2;
    text-shadow: #000 2px 2px, #000 0px 2px, #000 0px 0px, #000 2px 0px;
    text-align: justify;
}

#home .container p span {
    color: #ae9701;
}

#home .actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#home .button {
    width: 300px;
    font-weight: 400;
    text-align: center;
    padding: 1.2rem 2rem 0.8rem 2rem;
    background-color: #ae9701;
    color: #fff;
    text-decoration: none;
    margin: 0 1rem 0 0;
    border-radius: 0.5rem;
    line-height: 20px;
    text-transform: uppercase;
    font-size: 36px;
    display: inline-block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {
    #home .button {
        display: block;
        margin: 1rem auto;
    }
}

@media (max-width: 550px) {
    #home .actions {
        display: block;
    }
    #home .button {
        display: flex;
        margin: 0.5rem auto;
        height: 4rem;
        width: 275px;
    }
}
#home .button span {
    position: relative;
    bottom: -4px;
}

#home .actions .button:last-of-type span {
    bottom: -2px;
}

#home .button small {
    font-weight: 400;
    text-transform: inherit;
    font-size: 16px;
}
