#home_container {
    flex: 1;
    display: flex;
}

#image_container {
    display: flex;
    flex: 1;
    justify-content: center;
}

#image_container img {
    object-fit: cover;
    width: 60%;
}

#text_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-family: 'Playfair Display';
}

#headers {
    margin-bottom: 25px;
    width: fit-content;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    #headers {
        margin: auto;
        margin-bottom: 40px;
    }
}

#text_container h1 {
    font-size: 75px;
    width: fit-content;
}

#home_subheader {
    font-size: 25px;
}

#text_container p {
    font-family: 'Roboto';
    font-size: 17px;
    margin-bottom: 25px;
}

#text_container button {
    padding: 7px 20px;
    border-radius: 5px;
    border: 2px solid black;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 1px;
    background-color: white;
    color: black;
    cursor: pointer;
    width: fit-content;
}

#text_container button:hover {
    background-color: var(--light-grey);
}

#amazon_link {
    width: fit-content;
}

@media only screen and (max-width: 1000px) {
    #home_container {
        flex-direction: column;
    }

    #image_container {
        margin-top: 25px;
        margin-bottom: 100px;
    }

    #image_container img {
        width: 40%;
        min-width: 250px;
    }

    #text_container {
        text-align: center;
    }

    #text_container h1 {
        font-size: 60px;
    }

    #text_container p {
        text-align: left;
    }

    #text_container button {
        margin: 0 auto;
        margin-bottom: 100px;
    }
}
