@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");

body {
  color: rgb(73, 39, 19);
  background-image: url(../img/background.jpeg);
  background-size: cover;
  font-family: "Caveat", cursive;
  margin-top: 40px;
}
main {
  background-color: rgba(242, 233, 228, 0.8);
  max-width: 1000px;
  position: relative;
  margin: 0px auto;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
}
h1 {
  text-align: center;
  font-size: 60px;
}
h2 {
  text-align: center;
  font-size: 30px;
  margin-top: -35px;
}
form {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
button {
  background-color: rgb(73, 39, 19);
  color: #f2e9e4;
  border-radius: 10px;
  font-family: "Caveat", cursive;
  font-size: 20px;
  font-weight: bold;
  border: none;
  padding: 5px 20px 5px 20px;
  transition: 0.3s ease-in-out;
}
button:hover {
  background-color: #cb9a7c;
  color: rgb(73, 39, 19);
}
input {
  border-radius: 10px;
  border: none;
  padding: 10px 20px 10px 20px;
}
article {
  display: grid;
  grid-template-columns: 1fr;
}
section .single-item {
  padding: 20px;
  text-align: center;
  border-bottom: 2px dotted rgb(73, 39, 19);
}
div {
  display: inline-block;
}
.prop,
.prop-value {
  font-size: 30px;
}
.prop-value {
  padding-right: 30px;
}

/*@media screen and (max-width: 900px) {
  article {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  article {
    grid-template-columns: 1fr;
  }
}*/
