body,
html {
    height: 100%;
    margin: 0;
}

html {
    font-size: 14px;
}

body {
    font-family: "Lucida Bright", Georgia, serif;
/*    background-image: url("../images/RevetmentWithMarshSill.jpg");*/
/*
    background-image: url("../LandingPagePhotos/034_cropped.JPG");
*/
    background-image: url("../images/SillWithPlantedMarsh_10yrs_KDuhring.jpg");
/*    background-image: url("../LandingPagePhotos/023_cropped.JPG");*/
    min-height: 100%;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

* {
    box-sizing: border-box;
}

hr { 
  border-width: 3px;
}

.landing-text {
    text-align: left;
    position: absolute;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000;
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.90);
    padding: 10px;
    width: 90%;
}

.cntrText {
    text-align: center;
}

/* Launch Tool button */
#buttonDiv {
    padding: 10px 10px 15px;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    /*    outline: none;*/
    color: #000;
    background-color: #9DBEBB;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px #F4E9CD;
}

.button:hover {
    background-color: #468189;
    color: #F4E9CD;
}

.button:focus {
    background-color: #468189;
    color: #F4E9CD;
    border: 2px solid #000;
}

.button:active {
    background-color: #468189;
    box-shadow: 0 3px #666;
    transform: translateY(4px);
}

#logodiv {
        display: flex;
/*    display: none;*/
    flex-direction: column;
    align-items: center;
    /*    justify-content: space-between;*/
    margin: 10px;
}
.logo {
    height: 40px;
    margin: 5px 0;
}


/* *********************************
     MEDIA QUERIES
************************************ */

@media only screen and (min-width: 600px) {
    html {
        font-size: 16px;
    }

    .landing-text {
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px;
        width: 80%;
    }

    #logodiv {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin: 10px;
    }

    .logo {
        height: 50px;
    }
}

@media only screen and (min-width: 800px) {
    .landing-text {
        margin-left: 15%;
        margin-right: 15%;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 25px;
        width: 70%;
    }
}


@media only screen and (min-width: 1200px) {
    .button {
        padding: 10px 15px;
        font-size: 1.25rem;
        box-shadow: 0 7px #F4E9CD;
    }
}

@media only screen and (min-width: 1600px) {
    .logo {
        height: 70px;
    }
}
