/* style sheet tingz */
.hidden-header {
  display: none;
}
body {
  background-color: #033538ff; /*background color for all pages*/
}
.bg-dark { 
   background-color: rgba(255, 255, 255, 0); /*header color, set to transparent*/
}

.text-bubble-ref {
  width: 100%; 
  height: auto; 
  background-color: #000000;
  border-radius: 20px;
  padding: 35px;
  box-shadow: inset 0 -3em 3em rgba(255, 255, 255, 0.3);
  display: flex; 
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  margin: 40px auto 0; 
}

.text-bubble-ref p {
  margin: 5px 0;
  color: antiquewhite;
  font-size: 18px;
  text-align: left;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* parallax content */
.parallax-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 20px;
  position: relative;
  max-width: 800px; /* Increase this value to make it wider */
  width: 90%; /* Add this to make it responsive */
  overflow: hidden;
  background-image: url("https://static.igem.wiki/teams/5149/menu/parallax-bg-sloth.png");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 250px; 
  margin: 0 auto;
}
.parallax-ref-txt {
  position: relative;
  z-index: 1;
  text-align: center;
}

  /* team page parallax */
.parallax-team-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 20px;
  position: relative;
  max-width: 400px;
  overflow: hidden;
  background-image: url("https://static.igem.wiki/teams/5149/menu/parallax-bg-sloth.png");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 700px; /*gives the box curve */
  margin: 40px auto; /* top, right, bottom, left */
}

.parallax-team-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #000000; /*font color*/
}

  /* home page parallax */
.parallax-home-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 20px;
  position: relative;
  max-width: 700px;
  overflow: hidden;
  background-image: url("https://static.igem.wiki/teams/5149/menu/parallax-bg-sloth.png");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 700px; /*gives the box curve */
  margin: 40px auto; /* top, right, bottom, left */
}

.parallax-home-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #000000; /*font color*/
}

  /* safety page parallax */
.parallax-safety-container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  height: auto;
  padding: 20px;
  position: relative;
  max-width: 90%;
  overflow: hidden;
  background-image: url("https://static.igem.wiki/teams/5149/menu/parallax-bg-sloth.png");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  margin: 40px auto;
}

.parallax-safety-container img {
    width: 49%; 
    height: auto;
    object-fit: cover; 
    border-radius: 100px; 
}
@media (max-width: 600px) {
  .parallax-safety-container {
      flex-direction: column;
  }
  .parallax-safety-container img {
      width: 100%;
      margin-bottom: 10px;
  }
}

  /* hp page parallax */
  .parallax-hp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 20px;
    position: relative;
    max-width: 700px;
    overflow: hidden;
    background-image: url("https://static.igem.wiki/teams/5149/menu/parallax-bg-sloth.png");
    background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 700px; /*gives the box curve */
    margin: 40px auto; /* top, right, bottom, left */
  }
  
  .parallax-hp-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #000000; /*font color*/
  }

  /* sw page parallax */
.parallax-container-sw {
  position: relative;
  width: 100%;
  height: var(--container-height, 60vh); /* Adjust the height as needed */
  overflow: hidden;
  background-image: url('https://static.igem.wiki/teams/5149/menu/parallax-bg-sloth.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.parallax-content-sw {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000000; 
}
