body {
    font-family: courier;
    background-color: #f0f0f1;
    color: black;
}

.header {
    position: relative;
    border: 2px solid black;
    background-color: black;
    width: 100%;
    height: 150px;
    margin: -10px;
}

#logo {
    float: left;
    padding: 5px 0px 0px 80px;
    font-size: 40px;
    text-transform: uppercase;
    font-family: arial black;
    color: #52B640;
}

/* edits the actual nav bar */
.nav {
    float: left;
    border: 1px solid black;
    background-color: white;   /* background color of nav bar */
    text-transform: uppercase;
    font-family: arial black;
    list-style-type: none;
    margin: 50px;
    padding: 5px;
    width: 800px;
    overflow: hidden;
}

/* edits how the links in the nav bar look */
.nav li a {
    float: right;
    padding: 0px 20px 0px 20px;
    display: inline-block;
    color: black;
    text-decoration: none;  /* removes lines under links */
}

.nav li a:hover {
    transition: 0.2s;
    color: #52B640;
}

.home-container {
    padding: 110px 40px 0px 0px;
}

.home-image {
    margin: 10px 100px 100px 100px;
}

.login {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 7px;
    padding: 50px;
    margin: auto; /* centers the form in the center of page */
    width: 320px; /* changes the width of the box so it doesn't stretch across page */
}

.signup {
    float: right;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 7px;
    padding: 50px;
    margin: 20px 140px 0px 0px; /* centers the form in the center of page */
    width: 320px; /* changes the width of the box so it doesn't stretch across page */
}

.signup-text {
    float: left;
    margin: 70px 100px 100px 150px;
    height: 500px;
    width: 500px;
}

.lv {
    position: absolute;
    left: 725px;
    border-left: 3px solid black;
    height: 500px;
}


input[type=text] {
    border: 2px solid black;
    margin: 0px 0px 5px 0px;
    width: 290px;
    height: 30px;
}

.addEatery {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 7px;
    padding: 50px;
    margin: auto; /* centers the form in the center of page */
    width: 320px; /* changes the width of the box so it doesn't stretch across page */
}








.footer {
    /* keep footer at bottom of page */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    /* style the footer */
    border: 1px solid silver;
    background-color: silver;
    text-align: center;
    text-transform: uppercase;

    /* size of footer */
    width: 1450px;
    height: 30px;
}



.eateries {
    margin: auto;
    width: 35%;
    padding: 50px;
    border: 2px solid black;
    background-color: #3490dc;
}

#box1 {
    border: 1px solid black;
    background-color: white;
    width: 149px;
    height: 200px;
    padding: 0px 0px 0px 0px;
    margin: 0px;
}

#box1 img {
    width: 160px;
    height: 200px;
    object-fit: cover;
}

#box2 {
    border: 1px solid black;
    background-color: white;
    color: black;
    width: 338px;
    height: 200px;
    position: relative;
    left: 149px;
    bottom: 202px;
    padding: 0px 0px 0px 10px;
    margin: 0px;
    white-space: normal; /* keeps everything in the div still */
    overflow-wrap: break-word;
}




















