* {
    margin: 0;
    padding: 0;
}
.menubar {
    background-color: black;
    color: white;
    width: 100%;
    display: flex;
    padding: 10px 15px;
}
.logo {
    width: 20%;
    margin-top:auto;
    margin-bottom: auto;
}
.logo p a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
}
nav {
    width: 50%;
    margin-top: auto;
    margin-bottom: auto;
}
nav ul {
    list-style: none;
}
nav ul li {
   float: left;
    padding: 10px;
}
nav ul li a {
    text-decoration: none;
    color: white;
}
#login {
    background-color: black;
    color: white;
    border: none;
    padding: 30px;
}
#getstarted {
   background-color: #ed661f; 
   color: white;
   border: none;
   padding: 15px;
}
.formcontainer {
    background-image: url("../images/barren\ tree.png") ;
   /* background-repeat: no-repeat;
    /*background-position: 100%;
   /* background-size: cover;*/
   border: 1px solid white; 
   width: 50%;
   text-align: center;
   margin: auto;
   margin-top: 8vh;
   margin-bottom: 4vh;
}
.formcontainer h2 {
    margin-top: 5vh;
    font-size: 35px;
}
.quantityInput {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40vh;
}
div label {
    margin-right: 2vh;
    font-size: 20px;
}
div input {
    padding: 10px;
    font-size: 20px;
    width: 40%;
}
.formbuttons {
    display: flex;
    justify-content: left;
}
.formbuttons button {
    background-color: crimson;
    border: none;
    padding: 10px;
    font-size: 18px;
    margin: 1%;
    border-radius: 10px;
}
.dailyproduction {
    background-color: cornflowerblue;
    color: black;
    border: 1px white solid;
    height: 180px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    font-size: 20px;
}
.dailyproduction p {
    padding-top: 4px;
    padding-bottom: 4px;
}
.reportscontainer {
    background-color: wheat;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    border: 1px solid white;
    height: 900px;
}
.reportscontainer h2 {
    color: darkgreen;
    font-size: 30px;
}
.reportscontainer p {
    padding-top: 20px;
    padding-bottom: 20px;
    font-style: italic;
    font-size: 20px;
}
.heading {
    text-align: center;
    font-size: 40px;
    text-shadow: 2px 1px 1px navajowhite;
    text-decoration: underline;
}


