body, html {
  margin: 0;
}
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.container {
  max-width: 65%;
  padding: 20px;
  text-align: center;
}
h1 {
  margin-top: 10%;
  color: #010101;
}
h1 span.taiwan {
  color: rgb(5, 138, 30); 
}
p {
  margin-top: 5%;
  color: #909090;
  margin-bottom: 20px;
}
.features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.feature {
  width: 45%;
  padding: 20px;
  background-color: #fafcfa;
  border-radius: 10px;
  margin: 10px;
  height: 180px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature h2 {
  color: #060303;
  font-size: 20px;
  margin-bottom: 10px;
}
.feature p {
  color: #080505;
}
.pricings {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.pricing {
  width: 30%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.861);
  border-radius: 10px;
  margin: 10px;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pricing h2 {
  color: #060303;
  font-size: 20px;
}
.pricing p {
  color: #488860;
  margin: 5%;
}
.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;

}
.screenshot-container {
  display: inline-block;
  width: 40%;
  margin: 0 10px;
}
.screenshot {
  width: 75%;
  max-width: 400px;
  margin: 20px auto;
  display: block;
}
.button {
  margin-top: 5%;
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #0056b3;
}
footer {
  text-align: right;
  margin-right: 30px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }
  h1 {
    margin-top: 10%;
    font-size: 24px;
  }
  .menu {
    flex-direction: column;
  }
  .menu a {
    margin: 5px 0;
  }
  .gallery {
    flex-direction: column;
  }
  .screenshot {
    width: 100%;
  }
  .features {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    margin: 10px 0;
  }
  .pricing {
    width: 100%;
  }
  .button {
    margin-top: 10px;
  }
  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
  }

}
