html, body { 
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: black;
    scroll-behavior: smooth;

}


.header {
    background: url(images/bg.png) no-repeat center center/cover;
    width: 100%;
    height: 100vh;
    position: relative;
}


.section-two {
    background: url(images/bg.png) no-repeat center center/cover;
    width: 100%;
    height: 100vh;
    position: relative;
}


.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 150px;
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}


.line {
    background-color: #DFFF00;
    width: 113px;
    height: 3px;
    position: fixed;
    top: 70px;
    left: 150px;
    z-index: 999;
}


.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 150px;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}


.a {
    text-decoration: none;
    color: white;
    font-weight: 900;
    font-size: 15pt;
}


.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.txt-1 {
    position: absolute;
    top: 50%;
    font-family: 'Test Founders Grotesk X';
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    font-weight: Condensed Bold;
    color: black;
    line-height: 60px;
    text-transform: uppercase;
    z-index: 2;
}


.year {
    position: absolute;
    bottom: 15px;
    right: 25px;
    font-size: 12px;
    color: black;
    z-index: 2;
    font-weight: bold;
}


.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 80px;
    box-sizing: border-box;
}


.arrow {
    font-size: 80px;
    color: #DFFF00;
    cursor: pointer;
}


.dots-1 {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1px; /* Space between dots */
}


.dots-2 {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1px; /* Space between dots */
}


.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    margin: 10px 0;
}

/*  Active dot styling */
.dot.active {
    background-color: white;
}


.about-section {
    background-color: #111;
    color: white;
    padding: 100px 150px;
    font-family: 'Segoe UI', sans-serif;
}

/*  About container for text */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

/*  About section heading */
.about-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #DFFF00;
}

/*  About section text */
.about-container p {
    font-size: 18px;
    line-height: 1.6;
}


  .square-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: none; /* optional */
  }
  .rect-img1 {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border: none; /* optional */
  }
  .rect-img {
    width: 250px;
    height: 400px;
    object-fit: cover;
    border: none; /* optional */
  }
      

  /* .ct-1 {
    background-color: #DFFF00;
    width: 700px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
} */
  .ct-1 {
    background-color: #DFFF00;
    width: 700px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
  }
  
  .image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .album-title {
    text-align: center;
    color: black;
    font-size: 24px;
    font-weight: bold;
  }

  .about-section {
    background: url(images/bg.png) no-repeat center center/cover;
    color: white;
    padding: 100px 150px;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    position: relative;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-container.reverse {
    flex-direction: row;
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 200px;
}

.about-image img {
    width: 200px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
