body,
html {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fafa36;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5vw;
  /* Ensure left alignment with padding */
  box-sizing: border-box;
  position: relative;
}

.main-text,
.secondary-text {
  font-weight: bold;
  color: #000000;
  line-height: 0.75;
  margin: 0;
  text-align: left;
  position: absolute;
  left: 5vw;
  top: 60%;
  transform: translateY(-60%);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  white-space: nowrap;
}

.main-text {
  font-size: 17vw;
}

.secondary-text {
  font-size: 4vw;
}

.content-text {
  font-size: 16px;
  height: 85%;
  margin-top: 40px;

  padding-left: 5vw;

  color: #000000;

  text-align: left;
  position: absolute;

  line-height: 25px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.footer-text {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  text-align: left;
  padding-left: 5vw;
  padding-bottom: 70px;
}

.bottom-right-links a {
  font-size: 14px;
  font-weight: bold;
  color: #696767;
  text-decoration: none;
  text-transform: uppercase;
}


.bottom-right-links a:hover {
  text-decoration: underline;
}
/* Adjust for responsiveness */
@media (max-width: 568px) {
 .bottom-right-links a {
    font-size: 12px;
  }
 
}
/* Adjust for responsiveness */
@media (max-width: 368px) {
  #page_title,.bottom-right-links a {
    font-size: 10px;
  }

}
/* Adjust for responsiveness */
@media (max-width: 768px) {

  .footer-text {
    font-size: 2.9vw;
    font-weight: bold;
    color: #000000;
   
    /* Remove left padding */
    padding-bottom: 70px;
    /* Adjust bottom padding */
  }

  .main-text {
    font-size: 24vw;
  }

  .secondary-text {
    font-size: 5vw;
  }

  .bottom-right-links {
    padding-left: 7vw;
  
  }
 
}

/* Styles for the links at the bottom, arranged side by side */
.bottom-right-links {
  position: fixed;
  bottom: 0px;

  text-align: left;
  display: flex;
  gap: 10px;
  padding-left: 5vw;
  background-color: #fafa36;
  padding-bottom: 20px;
  padding-top: 20px;
  width: 100%;

  border-top: 0px solid #202020;
  width: 100%;

  -webkit-box-shadow: 0px -1px 3px #dcdc30;
  -moz-box-shadow: 0px -1px 3px #dcdc30;
  box-shadow: 0px -1px 3px #dcdc30;
}

#page_title {
 
  left: 5vw;
  margin: 4px 0 ;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 24px;

  color: #0f0f0f;
 text-align: center;

}


#home_link {
  left: 0px;
  margin: 4px;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  color: #7d8350;
}
