* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f4f4f4;
    background-image: url('/img/background.png');
    background-size: 100%;

  }
  
  .poster-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    background-color: #fff;
    border: 2px solid #333;
    overflow: hidden;
  }
  
  .top-text-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
  
  .top-text {
    color: #000;
    font-size: 6rem;
    font-weight: bold;
    white-space: nowrap;
    text-align: left;
  }
  
  /* Responsive font size for mobile */
  @media (max-width: 600px) {
    .top-text {
      font-size: 3rem;
    }

  

    .poster-image{
        
    top: 25% !important;
    z-index: -10 !important;
    }

    .bottom-text{
   
    font-size: 2rem !important;
    }
    a {
      color:black !important;
      background-color: transparent !important;
    }

    .third-line{
        
    width: 0.8rem; /* Width of the third line */
    left: 17% !important; /* Third line offset */
    }

    body::before{
        width: 0.5rem; /* Adjust the width of the line */
    left: 5% !important; /* Offset 1rem from the left */
    }

    
  body::after {
    
    left: 10% !important; /* Second line offset */
    width: 1rem !important; /* Width of the second line */
  }
  }
  
  
  .bottom-text {
    position: absolute;
    bottom: 20px;
    left:60%;
    color: #000;
    font-size: 3rem;
    font-weight: bold;
    text-align: right;
    z-index:4;
  }
  
  .poster-image {
    position: absolute;
    top: 12rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 2;
    max-height:75%;
    max-width:100%;
  }

  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28rem; /* Second line offset */
    width: 3rem; /* Adjust the width of the line */
    height: 100%;
    background-color: rgb(255, 0, 212);
    z-index: -99;
  }

  body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 32rem; /* Second line offset */
    width: 1rem; /* Width of the second line */
    height: 100%;
    background-color: rgb(0, 255, 255);
    z-index: -99;
  }
  


  /* Third line */
.third-line {
    content: "";
    position: absolute;
    top: 0;
    left: 25rem; /* Second line offset */
    width: 2rem; /* Width of the third line */
    height: 100%;
    background-color: rgb(60, 255, 0);
    z-index: -99;
  }

