@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxygen&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  /* font-family: "Red Hat Text", sans-serif; */
}
.main {
  background-image: url(./images/main-sample-4.png);
  height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container {
  background-color: rgb(0, 0, 0);
  height: 500px;
  width: 100%;
  z-index: 100;

  background-color: rgba(
    36,
    36,
    36,
    0.9
  ); /* Black partially transparent background */
  color: white;
  font-weight: bold;
  border: 3px solid #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body {
  background-color: #539e41;
}

.hero {
  display: flex;
  flex-direction: column;
  height: 500px;
  /* justify-content: center; */
  align-items: center;
}
h4 {
  font-size: 40px;
  padding-bottom: 30px;
}
h1 {
  text-align: center;
  padding: 40px 0px;
}
.details {
  margin: 2px 0px;
  font-size: 20px;
  color: rgb(129 255 104);
  font-family: "Oxygen", sans-serif;
  height: 100px;
}
.iban-num {
  padding-bottom: 10px;
  text-align: center;
}
.name {
  font-size: 30px;
}
h3 {
  /* padding-top: 70px;  */
  font-size: 40px;
  text-align: center;
  height: 100px;
}
h2 {
  font-weight: bolder;
  font-size: 50px;
  font-family: "Red Hat Text", sans-serif;
  color: rgb(53, 180, 27);
  text-align: center;
}
.top {
  margin-bottom: 20px;
  align-items: center;
}

.button-pos {
  height: 40px;
  width: 100px;
  cursor: pointer;
  font-family: "Red Hat Text", sans-serif;
  font-weight: bold;
  background-color: #539e41;
  border-radius: 5px;
  border: solid 0px black;
  transition: 0.2s ease-in;
  align-self: flex-start;
  margin-top: 20px;
  margin-bottom: 30px;
}
button:hover {
  transform: scale(1.002);
  height: 48px;
  width: 110px;
}
* {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 890px) {
  .details {
    font-size: 17px !important;
  }
  h3 {
    font-size: 35px;
  }
}
@media (max-width: 610px) {
  .details {
    font-size: 17px !important;
  }
  h3 {
    font-size: 30px;
    margin: 0;
    padding-top: 20px;
  }
  h1 {
    height: 200px;
  }
}
@media (max-width: 508px) {
  h3 {
    font-size: 20px;
  }
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 431px) {
  h1 {
    font-size: 25px;
  }
  h3 {
    font-size: 13px;
  }
}
