body {
  /* border: 1px solid black; */
  margin: 0;
  background-color: rgba(255,255,250,0.5);
  font-family: 'B612', sans-serif;
  font-size: 1.2em;
  color: #555;
  
}

h1, h2, h3 {
  letter-spacing: 4px;
  color: #555;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 1em;
  text-transform:uppercase;
  /* border: 1px solid red; */
}

.title {
  font-size: 1.5em;
}

.hero {
  /* height: 100vh; */
  text-align: center;
}

.hero img {
  width: 70%;
}


.mid-section {
  text-align: center;
  width: 70%;
  margin: 50px auto;
}

.mid-section p:nth-of-type(1) {
  /* color: rgb(160, 144, 252); */
  line-height: 1.5em;
}

.mid-section button {
  margin-top: 20px;
  background-color: white;
  height: 50px;
  width: 150px;
  border: 2px solid #555;
  border-radius: 5px;
  color: #555;
  font-size: 1em;
  letter-spacing: 2px;
  padding: 0 auto;
}

.mid-section button:hover {
  background-color: #555;
  height: 50px;
  width: 150px;
  border: 2px solid #555;
  border-radius: 5px;
  color: white;
  transition: 0.2s;
  transform: scale(0.98);
  
}

.item1, .item2 {
  width: 80%;
  margin: 150px auto ;
  display: flex;
  justify-content: space-evenly;
  
}

.item1 div {
  width: 45%;
}
.item1 img {
  width: 100%;
  position: relative;
}

.item2 {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
}

.item2 div {
  width: 30%;
}

.item2 img {
  width: 100%;
  position: relative;
}





@media (max-width: 800px){
  .item1, .item2 {
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    /* margin: 0 auto; */
    width: 100%;
    line-height: 1.2em;
  }

  .item1 div, .item2 div {
    width: 80%;
  }

  .item2 {
    margin-top: 0;
  }

  h2 {
    text-align: center;
  }


}
