* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background-image: url("./images/background.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-attachment: fixed;
  font-family: serif;
}
h2,
hr,
p {
  margin: 0;
}
.wrapper {
  height: auto;
  padding-bottom: 10px;
}
.background-color-green {
  background-color: green;
}
.background-color-transparent-white {
  background-color: rgba(255, 255, 255, 0.637);
}
.text-font-uppercase {
  text-transform: uppercase;
}
.text-color-orange {
  color: rgba(255, 72, 0, 0.877);
}
.text-color-white {
  color: white;
}
.text-align-center {
  text-align: center;
}
.text-weight-bold {
  font-weight: bold;
}
.text-size-large-h2 {
  font-size: 3rem;
}
.text-size-small-p {
  font-size: 1.2rem;
}
.text-color-green {
  color: green;
}
img[alt="fruits logo"] {
  width: 9rem;
}
.display-block {
  display: block;
}
.border-none {
  border: none;
}
.border-green {
  border: 1px green solid;
}
.border-radius {
  border-radius: 5px;
}
.margin-align-center {
  margin: 0 auto;
}
.padding-inputs {
  padding: 10px 20px;
}
.width-100 {
  width: 100%;
}
.width-80 {
  width: 80%;
}
.width-40 {
  width: 40%;
}
.margin-bottom-40px {
  margin-bottom: 40px;
}
.margin-bottom-50px {
  margin-bottom: 50px;
}
.margin-bottom-30px {
  margin-bottom: 30px;
}
.margin-bottom-10px {
  margin-bottom: 10px;
}
.padding-top-bottom {
  padding: 43px 0;
}
@media screen and (max-width: 500px) {
  .text-size-large-h2 {
    font-size: 2.05rem;
  }
  .width-80 {
    width: 90%;
  }
  .padding-inputs {
    padding: 5px 10px;
  }
  .text-size-small-p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1000px) {
  .width-40 {
    width: 90%;
  }
}
