* {
    box-sizing: border-box;
}
body {
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrapper-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.wrapper-2 {
    padding: 30px;
    text-align: center;
}
h1 {
    font-family: monospace;
    font-size: 4em;
    letter-spacing: 3px;
    color: #fdd20eff;
    margin: 0;
    margin-bottom: 20px;
}
.wrapper-2 p {
    margin: 0;
    font-size: 1.3em;
    color: #aaa;
    font-family: "Source Sans Pro", sans-serif;
    letter-spacing: 1px;
}
#go-home {
    transition: all 0.5s;
    color: #fdd20eff;
    background: none;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 5px;
    text-transform: capitalize;
    border: 2px solid #fdd20eff;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
#go-home:hover {
    background: #fdd20eff;
}
#go-home a {
    color: #fdd20eff;
}
a:hover #go-home {
    color: #fff !important;
}
.footer-like {
    margin-top: auto;
    background: #d7e6fe;
    padding: 6px;
    text-align: center;
}
.footer-like p {
    margin: 0;
    padding: 4px;
    color: #fdd20eff;
    font-family: "Source Sans Pro", sans-serif;
    letter-spacing: 1px;
}
.footer-like p a {
    text-decoration: none;
    color: #fdd20eff;
    font-weight: 600;
}

@media (min-width: 360px) {
    h1 {
        font-size: 4.5em;
    }
    .go-home {
        margin-bottom: 20px;
    }
}

@media (min-width: 600px) {
    .content {
        max-width: 1000px;
        margin: 0 auto;
    }
    .wrapper-1 {
        height: initial;
        max-width: 620px;
        margin: 0 auto;
        margin-top: 50px;
    }
}
