* {
  margin: 0;
  padding: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
#products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 20px;
  margin: 0px 30px;
}

#products div img {
  width: 250px;
  height: 300px;
  display: block;
}

#products .box,
.imgDiv,
.titleDiv {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

#products .box {
  height: 600px;
  width: 270px;
  border: 1px solid black;
}

#products div p {
  display: block;
  font-size: larger;
  font-weight: 500;
  margin: 7%;
}

.titleDiv {
  height: 170px;
}

.titleDiv button {
  height: 30px;
  width: 120px;
  background: rgb(228, 228, 228);
  border: 1px solid black;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: large;
  font-weight: 600;
  margin: 3% auto;
  padding: 2%;
  border: 1px solid;
  width: 280px;
  height: 300px;
  div {
    display: flex;
    justify-content: space-between;
    margin: 2%;
    width: 100%;
  }
  button {
    margin: 2%;
    height: 40px;
    width: 110px;
    font-size: large;
    font-weight: 600;
  }
}

#account {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: large;
  font-weight: 600;
  margin: 3% auto;
  padding: 2%;
  p {
    width: 100%;
    word-spacing: 5px;
    margin: 2%;
  }
  button {
    margin: 2%;
    height: 50px;
    width: 180px;
    font-size: large;
    font-weight: 600;
  }
  .deposit {
    width: 100%;
  }
  input {
    height: 30px;
    width: 300px;
    margin: 6%;
  }
}
