/* General Styles */
body {
  font-family: 'Sour Gummy', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

h1, h2 {
  text-align: center;
}

.main-title {
  font-size: 3rem;
  margin: 0;
  background: linear-gradient(to bottom, #ffcc00, #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

img {
  max-width: 100%;
  display: block;
  margin: auto;
  border-radius: 20px;
}

.home-section {
  text-align: center;
  padding: 20px;
}

.main-image {
  width: 100%;
  max-width: 600px;
}

.small-round-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -50px;
}

/* About Section */
.about-section {
  background-color: white;
  padding: 40px 20px;
}

.about-image {
  border-radius: 50%;
  margin-bottom: 20px;
  width: 300px;
  height: 300px;
}

.about-content p {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

/* Gallery Section */
.gallery-section {
  padding: 40px 20px;
}

.gallery img {
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Roadmap Section */
.roadmap-section {
  padding: 40px 20px;
}

.roadmap .phase {
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 20px;
  background: lightgrey;
}

.social-icons img {
  width: 50px;
  margin: 0 10px;
  display: inline-block;
}

/* Footer */
.footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: white;
}
.bts{
  font-size: 2.5rem;
  border-radius: 10px;
    justify-content: center;
    text-align: center;
    background: seagreen;
    color: #fff;
    margin-top: 20px;
}
.bts:hover{
  background: darkgray;
  color: #000;
}