* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
:root {
  --green: rgb(23, 162, 15);
  --red: rgb(149, 11, 63);
  --nav: rgb(168, 255, 146);
}
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background-color: white;
  width: 100%;
  overflow-x: hidden;
}
.con {
  background-color: white;
  width: 100%;
  max-width: 900px;
  height: fit-content;
  padding: 0 20px 100px 20px;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column;
  margin: 0 auto;
}
.dec1 {
  background-color: var(--green);
  position: absolute;
  width: 100%;
  height: 40px;
  top: 0px;
}
.header1 {
  margin-top: 50px;
  font-size: 60px;
  font-weight: 1000;
  color: var(--red);
}
.header2 {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 20px;
}
.buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Ensures all buttons have equal width */
  gap: 20px; /* Space between buttons */
  width: 100%; /* Ensures full responsiveness */
}
/* Button styling */
.button1 {
  background-color: var(--green);
  color: white;
  border-radius: 15px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 0; /* Adjusted to avoid extra spacing */
  text-decoration: none;
  text-align: center;

  /* Ensure consistent width */
  width: 100%;
  max-width: 250px; /* Optional: restrict max width for larger screens */
  margin: 0 auto; /* Center-align buttons */
}
.img-con {
  display: flex;
  flex-flow: row-reverse nowrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 50px;
  position: relative;
  margin-bottom: 20px;
}
.img-con a {
  margin: 0 10px;
}
.img2 {
  width: 61px;
  height: 71px;
  visibility: hidden;
}
.img1 {
  height: 41px;
  width: 72px;
  visibility: hidden;
}
.nav {
  position: fixed;
  max-width: 600px;
  width: 100%;
  height: 60px;
  background-color: var(--nav);
  bottom: 0px;
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-around;
  align-items: center;
}
.nav a {
  height: 90%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: black;
}
.nav a img {
  width: 28px;
  height: 25px;
}

@media (min-width: 962px) {
  .con {
    width: 600px;
  }
  body {
    background-color: white;
  }
  .nav {
    top: 950px;
  }
}

@media (max-width: 768px) {
  .con {
    padding: 0 10px 100px 10px;
  }
  .header1 {
    font-size: 40px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .button1 {
    font-size: 16px;
    min-width: 150px;
  }
  .header1 {
    font-size: 30px;
  }
}
