html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
}

a {
  color: #fff;
}

@media (min-width: 992px) {
  .rounded-lg-3 {
    border-radius: .3rem;
  }
}

/* Add this to your CSS file */

.img-responsive {
  width: 100%;
  height: auto;
}

/* Responsive Typography */
h1,
p {
  margin-left: 15px;
  margin-right: 15px;
}

/* Media Queries for additional control */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    /* Smaller font size on smaller screens */
  }

  p {
    font-size: 1rem;
  }

  .btn {
    padding: 5px 10px;
    /* Smaller padding on smaller screens */
  }
}

/* Navigation Bar */
.navbar-toggler {
  border: none;
}

.navbar-brand {
  font-size: 1.5rem;
  /* Larger brand name */
}

/* Additional responsive tweaks can be added here as needed */
.full-page-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 50px;
}

/* Add any additional styling as needed */