*{
    color: white !important;
    padding: 0;
    margin: 0;
}
body{
    color: #D27600;
    background: black;
}
.mystery{
    color: #95d5b2 !important;
}
.hunter{
    color: crimson !important;
}
.navbar{
    /* background: #606c38; */
    background: #556f44;
    padding: 1rem;
}
.navbar-brand{
    width: 3vw;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: url(background/img/broc-icon.webp);
    background-size: cover;
    background-position: center;
}
.nav-item{
    font-size: 1vw;
}
.navbar-collapse{
    flex-grow: 0;
}
.dropdown-menu{
    background: #556f44;
    transition: .4s;
}
.dropdown-item:hover{
    background: #35452a;
}
.enter-page{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    font-family: "Lexend";
    text-align: center;
}
.enter-container{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.enter-header{
    font-size: clamp(2.5em, 6em, 6vw);
}
.enter-text{
    font-size: 2em;
    float: right;
}
.enter-sign{
    padding-top: 25%;
    padding-bottom: 5%;
    font-size: 2em;
}
.shoebill{
    position: sticky;
    top: calc(100% - 100vh);
    width: 100%;
    height: 100vh;
    background-image: url('background/img/shoebill-dark-with-eyes.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 999;
}
main{
    display: grid;
    place-items: center;
    min-height: 100vh;
    position: relative;
}
.eye-dot{
    width: 40px;
    height: 40px;
    background: red;
    border-radius: 50%;
}
.eyes, .eye{
    position: absolute;
}
.shoebill-intro, .shoebill-behavior, .shoebill-diet, .shoebill-listener{
    width: 100%;
    height: 100vh;
    position: relative;
}
.shoebill-intro{
    background: #000;
    position: relative;
    z-index: -1;
}
.sh-object{
    position: sticky;
    top: calc(100% - 50%);
    z-index: 1;
    background: #000;
    width: 100%;
    height: 50%;
}
.full-name{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
}
.half{
    width: 50%;
    height: 100%;
    font-size: 15vw;
    text-align: center;
}
.shoebill-behavior{
    background: #000;
}
.behavior-box{
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.behavior0, .behavior1, .behavior2{
    position: absolute;
    width: 50%;
    aspect-ratio: 1 / 1;
}
.behavior0{
    height: 100%;
    bottom: 0;
    left: 0;
}
.behavior1{
    height: 50%;
    top: 0;
    right: 0;
}
.behavior2{
    height: 50%;
    bottom: 0;
    right: 0;
}
.floating-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw !important;
}
.shoebill-diet{
    background: #393939;
    display: flex;
}
.swamp{
    background: url(background/img/swamp.jpg);
    background-size: cover;
    background-position: center;
    width: 50%;
    height: 100%;
    position: relative;
}
.swamp-filter{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.354);
}
.swamp-content{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    padding-left: 10%;
}
.swamp-content h2{
    font-size: 6vw;
    padding: 0;
    margin: 0;
}
.swamp-content p{
    font-size: 3vw;
}
.toad{
    position: absolute;
    bottom: 50px;
    width: 5vw;
    aspect-ratio: 1 / 1;
    background: url(background/img/toad.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulse 1.5s infinite;
}
#options{
    position: relative;
    bottom: 50%;
    left: 50%;
}
#options button, #options2 button, #options3 button{
    padding: 10px 15px;
    font-size: 15px;
    background: black;
    transition: .4s;
    border: none;
}
#options button:hover, #options2 button:hover, #options3 button:hover{
    background: crimson;
}
#toadYes:hover, #crocYes:hover, #birdYes:hover{
    background: lightgreen !important;
}
.crocodile{
    position: absolute;
    bottom: 150px;
    right: 30%;
    width: 10vw;
    aspect-ratio: 1 / 1;
    background: url(background/img/croc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.pulse{
    animation: pulse 1.5s infinite;
}
#options2{
    position: relative;
    bottom: 10%;
    left: 40%;
}
#options3{
    position: relative;
    bottom: 25%;
    left: 40%;
}
.bird{
    position: absolute;
    bottom: 425px;
    right: 55%;
    width: 10vw;
    aspect-ratio: 1 / 1;
    background: url(background/img/bird.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@keyframes pulse {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}
.tile{
    width: 50%;
    height: 100%;
    position: relative;
    text-align: center;
}
.tile-content{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    font-size: 8vw;
}
hr{
    border: 5px solid;
}
.shoebill-listener{
    background: #000;
    overflow: hidden;
}
.listener-box{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.listener-box h2{
    font-size: 5vw;
    text-align: left;
}
.listener-box button{
    border: none;
    border-radius: 1vw;
    padding: 1vw 2vw;
    background: #D27600;
    font-size: 3vw;
    margin-top: 20%;
    transition: .4s;
}
.listener-box button:hover{
    background: #b36500;
}
.shoebill-half{
    background: url(background/img/shoebill-dark-with-eyes.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100%;
    transform:translateX(50%);
}
.shoebill-visit{
    width: 100%;
    padding: 5% 0;
    position: relative;
    background: #95d5b2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.credits{
    background: #556f44;
}
.join-box{
    padding:5% 15%;
    background:#fff;
}
.join-box h2{
    font-size: 2vw;
    margin: 1vw 0;
}
.join-box *{
    color: #000 !important;
    font-size: 1.5vw;
}
.join-box button{
    background: #D27600;
    border: none;
    color: #fff !important;
    padding: .5vw;
    border-radius: .75vw;
    margin: 1vw;
    transition: .4s;
}
.join-box button:hover{
    background: #b36500;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: #fff;
    padding: 15px 30px;
  }
  footer p{
    margin: 0 !important;
  }

  .socials, .links {
    display: flex;
    align-items: center;
  }

  .socials a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
  }

  .socials a:hover {
    color: #1da1f2; /* Twitter blue color for hover effect */
  }

  .links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .links a:hover {
    color: #1da1f2;
  }

  @media (max-width: 970px) {
    footer {
      flex-direction: column;
      text-align: center;
    }

    .socials, .links {
      flex-direction: column;
    }

    .socials a, .links a {
      margin: 5px 0;
    }
  }
.red{
    color: crimson !important;
}
.green{
    color: lightgreen !important;
}