/* project2.css */

body {
    background-image: linear-gradient(to right, #2D8689, yellow);
    font-family: arial black;
    color: black;
    margin: 0px;
}

.home-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
}

.logout-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
}

h1 {
    text-align: center;
    text-transform: uppercase;
}

h3 {
    text-align: center;
    text-transform: uppercase;
}

.nav {
    text-transform: uppercase;
    background-color: white;
    list-style-type: none;
    margin: auto;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.nav li {
    float: right;
    display: block; /* removes the bullet points */
    padding: 6px;
    background-color: #FFFDD0;
}

.nav li a {
  display: block;
  color: black;
  text-align: center;
  padding: 5px;
  text-decoration: none;
}

.nav li a:hover {
    color: red;
}


.login {
    background-color: white;
    color: black;;
    border: 2px solid black;
    border-radius: 7px;
    box-shadow: 0px 5px 20px 10px black;
    padding: 20px;
    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 */
}

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

input[type=submit] {
    margin: 5px 0px 0px 0px;
}

input[type=number]{
    width: 30px;
}

.wholebox {
    display: inline-block;
    border: 5px solid white;
    width: 400px;
    height: 400px;
    font-family: courier;
    font-size: 14px;
    color: black;
    margin: 20px;
}

#box1 {
    border: 1px solid white;
    width: 150px;
    height: 200px;
}

#box1 img {
    width: 150px;
    height: 220px;
    object-fit: cover;
}

#box2 {
    border: 1px solid white;
    background-color: black;
    color: white;
    width: 240px;
    height: 200px;
    position: relative;
    left: 150px;
    bottom: 202px;
    padding-left: 10px;
    white-space: normal; /* keeps everything in the div still */
}

#box3 {
    border: 1px solid white;
    background-color: black;
    color: white;
    width: 391px;
    height: 200px;
    padding-left: 10px; /* bigger = stretch right */
    position: relative;
    bottom: 203px; /* bigger = move up */
    right: 1px;
    white-space: normal; /* keeps everything in the div still */
}


.art {
    margin: auto;
    width: 35%;
    padding: 20px;
    border: 2px solid black;
}

.cart-col {
    margin: auto;
    padding: 50px;
    width: 900px;
    height: auto;
    border: 2px solid black;
    background-color: white;
    font-family: courier;
    font-size: 14px;
    color: black;
}

.cart-products {
    margin: auto;
    padding: auto;
    width: 900px;
    height: auto;
}



