/* MAIN PAGE STYLE */
body {
    background-color: #D47719;
    margin: 0;
    font-family: 'SoRunDown';
    color: #734111;
    text-align: center;
}

/* TITLES */
h1 {
    font-family: 'SoRunDown';
    font-size: 5rem;
    margin-top: 80px;
}

.bangla-title {
    font-size: 2rem;
    font-family: 'VisceraleBrush';
    margin-top: -20px;
}

/* WELCOME BOX */
.welcome-box {
    width: 60%;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 239, 220, 0.75);
    border-radius: 15px;
    font-size: 1.2rem;
    font-family: 'capricemedium
    
    /* Aquarium animation */
.aquarium {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Fish styling */
.fish {
  position: absolute;
  width: 150px;
  opacity: 0.9;
  animation: swim 25s linear infinite;
}

.fish.reverse {
  transform: scaleX(-1);
}

/* Swimming animation */
@keyframes swim {
  0% { transform: translateX(-20%) translateY(10vh); }
  50% { transform: translateX(120%) translateY(40vh); }
  100% { transform: translateX(-20%) translateY(75vh); }
}








  
