body {
  font-family: "Arima Madurai", cursive;
  text-align: center;
  background-color: aliceblue;
  margin: 10px auto;
  padding: 20px;
}

h1 {
  font-family: "Lobster Two", cursive;
  text-decoration: underline;
  color: rgba(45, 94, 147, 0.454);
  font-size: 48px;
}

.week-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto;
  height: 600px;
}

.week {
  border: 1px solid mediumspringgreen;
  height: 30px;
}

.forecast {
  border: 1px solid orangered;
  height: 220px;
}

.outfit {
  border: 1px solid purple;
  border-top: none;
  height: 350px;
}


#closet-button, #close-button {
  font-family: "Arima Madurai", cursive;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  cursor: pointer;
  background-color: floralwhite;
  border-radius: 10px;
  letter-spacing: 1px;
}

#close-button{
    display: none;
    background-color: rgb(233, 213, 185);
}

#closet-button:hover {
  background-color: rgb(250, 237, 212);
  border-radius: 10px;
}

#drag-msg{
    display:none;
    font-style: italic;
    color: grey;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outfit-images > img {
  height: 300px;
  object-fit: cover;
  padding: 20px;
  display: none;
}

.outfit-images > img:hover {
  opacity: 75%;
  cursor: pointer;
}

@media only screen and (max-width: 900px){
  img {
    object-fit: cover;
    width: 80px;
  }
  body{
      font-size:12px;
  }
  #closet-button, #close-button{
      font-size: 12px;
      padding: 1px;
  }
}

#zipcode{
    font-family: "Arima Madurai", cursive;
    margin-top: 10px;
    padding: 2px;
    height: 20px;
}

#submit{
    font-family: "Arima Madurai", cursive;
    height: 27.8px;
    background-color: transparent;
    border-radius:3px;
    cursor: pointer;
}

