* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  color: #505050;
}
#here{
  display: none;
}
.show{
  display: none;
}
h1 {
  font-family: "Jost", sans-serif;
}
header {
  width: 100%;
  height: 10vh;
  background: rgb(250, 255, 221);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header h1 a {
  text-decoration: none;
  color: #505050;
  font-size: 25px;
}
.social {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.social li {
  padding: 0 0 0 1em;
}
.social li a {
  text-decoration: none;
  color: #505050;
}
.social li a i {
  width: 30px;
  height: 30px;
  background: rgba(160, 160, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
}
.container {
  width: 100%;
  height: auto;
  padding: 5em 1em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgb(250, 255, 221);
}
.title {
  margin: 0 1em;
}
.title h1 {
  font-size: 20px;
}
.title p {
  padding: 0.3em 0;
}
.image-container img {
  height: 200px;
  border-radius: 3px;
  margin: 0 1em;
}
.title a {
  text-decoration: none;
}
.title a button {
  width: 100px;
  height: 30px;
  background: none;
  border: 1px solid #505050;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  margin: 0.3em 0;
  transition: 0.3s;
  cursor: pointer;
}
.title a button:hover {
  background: #505050;
  color: #fff;
  transition: 0.3s;
}
.contents {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3em 1em;
  text-align: center;
}
.item {
  width: 200px;
  height: auto;
}
.text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0.5em 0;
}
.text h1,
.text p {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.first-image {
  width: 100%;
  height: 130px;
  background: url(./Images/first.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.second-image {
  height: 130px;
  background: url(./Images/second.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.third-image {
  height: 130px;
  background: url(./Images/third.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
#item-center {
  margin: 0 1em;
}
.items {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
.contents h1 {
  padding: 0 0 2em 0;
  font-size: 20px;
}
.item h1 {
  font-size: 16px;
}
.text h1 {
  padding: 0;
  font-size: 18px;
}
.text p {
  font-size: 15px;
}
footer {
  width: 100%;
  height: auto;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #505050;
  color: rgb(250, 255, 221);
}
@media (max-width: 1150px) {
  header {
    justify-content: space-between;
    padding: 0 1em;
  }
}
@media (max-width: 900px) {
  .container {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .title {
    margin: 0;
    width: 100%;
    padding: 1em 0;
  }
  .image-container img {
    margin: 0;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 700px) {
  .items {
    flex-direction: column;
  }
  #item-center {
    margin: 2em 0;
  }
  .first-image,
  .second-image,
  .third-image {
    width: 100%;
    height: 250px;
  }
  .item {
    width: 300px;
  }
  header {
    border-bottom: 0.1px solid rgba(160, 160, 160, 0.3);
  }
}
