body {
  background: rgb(0, 0, 0) url("https://res.cloudinary.com/dlyycwdgp/image/upload/v1745770052/cherryblossom_caaafl.jpg") no-repeat center
    fixed;
  color: rgb(0, 0, 0);
}

#comSlo {
  color: rgb(243, 104, 243);
}

.logTex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(247, 237, 247);
  border: thick double rgba(248, 246, 246, 0.688);
  background-color: rgba(0, 0, 0, 0.822);
  font-family: "Courier New", Courier, monospace;
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.397);
}

.logTex h1 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: rgb(255, 255, 255);
}

.logTex p {
  font-size: 1.6em;
  line-height: 1.8;
  text-align: center; /* Change from justify to left */
  color: rgb(230, 230, 230);
  margin-bottom: 15px;
}

#hero_banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(138, 20, 105, 0.695) fixed;
  border: double black;
  padding: 20px;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.hero-content > div {
  flex: 1;
  text-align: center;
}

#hero_banner img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

#hero_banner h1 {
  font-size: 2.5em;
  margin: 10px 0;
  color: white;
}

#hero_banner p {
  font-size: 1.2em;
  color: white;
  margin: 0;
}

footer.app-footer {
  background-color: #1a1a1ad7;
  color: #ffffff;
  padding: 20px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

.footer-logo img {
  height: 100%; /* Make the image take up the full height of the footer */
  max-height: 500px; /* Set a maximum height to prevent it from being too large */
  width: auto; /* Maintain the aspect ratio */
  object-fit: contain; /* Ensure the image scales properly within its container */
}
.footer-center {
  text-align: center;
}

.footer-icons a {
  margin: 0 5px;
  color: #ffffff;
  text-decoration: none;
}

.footer-icons a:hover {
  color: #f0f0f0; /* Optional hover effect */
}

.footer-right {
  text-align: right;
}

.h-5 {
  height: 1.25rem; /* 20px */
}

.w-5 {
  width: 1.25rem; /* 20px */
}

img.responsive {
  max-width: 100%;
  height: auto;
}

.mainContent {
  display: flex;
  flex-direction: row;
  background-color: rgba(188, 90, 212, 0.695);
  margin: 5% auto;
  border: 5cap inset rgb(49, 8, 57);
  color: rgb(80, 221, 10);
}

#trippy {
  background-color: rgba(193, 128, 203, 0.351);
  display: flex;
  justify-content: space-around;
}

img.lazyload {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazyload[src] {
  opacity: 1;
}

@media (max-width: 1000px) {
  body {
    background-size: cover;
    background-attachment: scroll;
  }

  .logTex {
    font-size: smaller;
    padding: 5px;
    margin: 20px;
  }

 
}

@media (max-width: 700px) {
  body {
    background-size: cover;
    background-attachment: scroll;
  }

  .logTex {
    flex-direction: column;
    font-size: smaller;
    padding: 5px;
    margin: 57 px;
  }

  .responsive, #hero_banner img {
    display: none; /* Hides images with the class "responsive" or inside #hero_banner */
  }

  #hero_banner {
    flex-direction: column;
    height: auto;
  }

  .navigation_bar {
    flex-direction: column;
    font-size: medium;
  }

  #trippy img {
    width: 100%;
    height: auto;
  }

  #hero_banner {
    flex-direction: column; /* Stack items vertically */
    text-align: center;
  }

  #hero_banner > div {
    margin-bottom: 20px; /* Add spacing between stacked items */
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 10px;
  }
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: transparent;
  border: 4px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.home-button {
  background-color: #9c20778c;
  color: white;
  border: 2px solid rgb(255, 255, 255);
  padding-left: 5px;
  padding-right: 5px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.home-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.logTex a {
  text-decoration: none;
}

.navigation_bar {
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  margin-bottom: 20px;
}

.navigation_bar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navigation_bar li {
  display: inline;
}

.navigation_bar a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navigation_bar a:hover {
  color: #f0a500;
}