* {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    
}
body{
    margin: 0;
    font-family: "Poppins", serif;
    background-color: #0F1010;
    color: #ffffff;
}

.banner-img{
    width: 100%;
    height: auto;
}
.res-banner{
    position: relative;
    display: inline-block;
    overflow: hidden;
  }

.res-banner .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
  }
.banner-content {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -70%); 
    text-align: center;
    color: white; 
    z-index: 2; 
    font-family: "Poppins", serif;
}

.banner-content h3{
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.banner-content p{
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1px;
    max-width: 600px;
}
.banner-divider{
    border: none;
    height: 1px;
    background-color: #ffffff;
    margin: 20px auto; 
    max-width: 100px;
    justify-content: center;
}
.menu img{
   width: 100%;
}
@media (max-width: 1700px) {
    .main-container {
        gap: 150px;
    }
    .banner-content h3{
        font-size: 50px;
        margin-bottom: 17px;
    }
}
@media (max-width: 1440px) {
    .banner-content h3{
        font-size: 40px;
        margin-bottom: 15px;
    }
    .banner-content p{
        font-size: 12px;
        max-width: 500px;
    }

}
@media (max-width: 1024px) {
    .banner-content h3{
        font-size: 30px;
        margin-bottom: 0px;
    }
    .banner-divider{
        margin: 10px auto;
    }
    .banner-content p{
        font-size: 10px;
        width: 450px;
    }
}
@media (max-width: 748px) {
    .res-banner{
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
      }
      .banner-img{
        width: 130%;
      }
    .banner-content{
        margin-top: 20px;
    }
    .banner-content h3{
        font-size: 20px;
        margin-bottom: 0px;
    }
    .banner-divider{
        margin: 10px auto;
    }
    .banner-content p{
        font-size: 9px;
        width: 300px;
        letter-spacing: 0.5px;
    }
}
@media (max-width: 480px) {
    .res-banner{
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
      }
      
      .banner-img{
        width: 150%;
      }
    .banner-content{
        margin-top: 30px;
    }
    .banner-content h3{
        font-size: 16px;
        margin-bottom: 0px;
    }
    .banner-divider{
        margin: 10px auto;
    }
    .banner-content p{
        font-size: 8px;
        width: 300px;
        letter-spacing: 0.5px;
    }
}
