#home{
    position: relative;
    margin-top: 350px;
    background-image: url("banners/banner_shadow.png"), url("banners/banner_field_01.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 576px;
    font-size: 30px;
}

h1{
    color: whitesmoke;
    padding-bottom: 20px;
}

.home_description{
    color: whitesmoke;
    width: 475px;
    font-size: 24px;
}

#home_info{
    position: relative;
    margin: 100px 50px;
    height: 100%;
    top: 50px;
    padding: 15px 0px;
}

/* Shared button styles */
#home_info button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 210px;
    height: 60px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    text-decoration: none;
    cursor: pointer;

    border-radius: 6px;
    transition: all 0.25s ease;
}

/* Left button */
#button_home_products {
    background: #1D6A38;
    color: white;
    border: none;
}

#button_home_products:hover {
    background: #257F46;
    transform: translateY(-2px);
}

/* Right button */
#button_home_learnmore {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#button_home_learnmore:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}