body {
    margin: 0;
    display:flex;
    justify-content: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

.logo {
    width: 100%;
    float: right;
}

.logo a {
    float:right;
}

.container {
    width: 60%;
    padding-top: 50px;
}

.text {
    float:right;
}

.text h1 {
    font-size: 7em;
    margin-bottom: 0;
    margin-top: 50px;
}

.text p {
    font-size: 1.5em;
    margin-top: 50px;
}

.button-container {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.button-container a {
    text-decoration: none;
    color: black;
    font-size: 1.3em;
    border: 1px solid black;
    border-radius: 15px;
    padding: 10px 75px 10px 75px;
}

.background {
    position: absolute;
    color: #eeeeee;
    font-size: 35em;
    z-index: -1;
    bottom: 0;
    left: -150px;
    height: 27rem;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    .container {
        width: 90%;
        padding-top: 20px;
        text-align: center;
    }

    .text {
        float: unset;
    }

    .text h1 {
        font-size: 3em;
        margin-top: 100px;
    }

    .text p {
        font-size: 1.1em;
        margin-top: 20px;
    }

    .background {
        font-size: 70vw;
        left: 50%;
        transform: translateX(-50%);
        height: 66vw;
    }
}