body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 200vh;
  background: linear-gradient(55deg, #e1e9e8 0%, #d5e9eb 51%, #ededed 85%);
}

header h1 {
  font-size: 50px;
  font-family: "Acme", sans-serif;
  /* s */
  /* font-family: "Lobster", cursive; */
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

i {
  font-size: 28px;
  cursor: pointer;
  top: 8%;
  left: 95%;
  position: absolute;
  transform: translate(-50%, -50%);
}

section {
  /* background-color: antiquewhite; */
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

section .image {
  width: 400px;
  /* background-color: red; */
}

section .text {
  position: relative;
  font-size: 17px;
  text-align: justify;
  margin-right: 70px;
  border-radius: 5px;
  line-height: 30px;
  /* background-color: red; */
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons {
  display: flex;
}

.btn {
  text-decoration: none;
  padding: 20px 25px;
  font-size: 20px;
  position: relative;
  margin: 5px;
}

.btn-1 {
  background: rgb(128, 162, 240);
  color: #fff;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.btn-1::after,
.btn-1::before {
  content: "";
  position: absolute;
  opacity: 0.3;
  background: rgb(128, 162, 240);
  border-radius: inherit;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: transform 0.3s ease;
}

.btn-1:hover {
  transform: translate(-12px, -12px);
}

.btn-1:hover::after {
  transform: translate(6px, 6px);
}

.btn-1:hover::before {
  transform: translate(12px, 12px);
}

span {
  color: red;
}

#tml {
  width: auto;
  height: 60vh;
  display: flex;
  position: relative;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-top: 300px;
  background-color: rgb(128, 162, 240);
  border-radius: 30px;
}

#tml .image2 {
  width: 300px;
}
#wrapper {
  /* top: 20%;
  left: 50%; */
  /* padding: 15px; */
  width: 40%;
  background: rgb(32, 132, 186);
  border-radius: 8px;
  box-shadow: rgb(38, 57, 77) 0px 10px 30px -10px;
}
input {
  text-align: justify;
  outline: none;
  border-radius: 2px;
  padding: 10px;
  margin: 10px;
}
button {
  font-size: 15px;
  font-weight: bold;
  color: black;
  background-color: rgb(128, 162, 240);
  border-radius: 50%;
  margin: 20px;
  padding: 30px;
  display: inline-block;
  margin-top: 5%;
  cursor: pointer;
}
