@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,200&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main{
   margin-top: 5px;
    height: 80vh;
    width: 100%;
    background-color: black;
}
.wrapper,.slide{
    
    overflow: hidden;
    width:100% ;
    height: 100%;

}
.slide{
    overflow: hidden;
}
.slide::before{
    content: "";
    position: absolute;
    height: 100%;
    width:100% ;
    /* background-color:rgba(0, 0,0, 0.4); */
    z-index: 10;
}
.slide .image{
    
    height: 87vh;
    width: 100%;
    object-fit:cover ;
}
.slide .image-date{
    position:absolute ;
    top:50% ;
    left: 50%;
    transform:translate(-50%,-50%) ;
    text-align: center;
    width: 100%;
    z-index:100 ;
}
.image-date  .text
{
    font-size: 14px;
    font-weight: 400;
    color: black;
}
.image-date h2{
    font-size: 40px;
    font-weight:600;
    color: black;
}
a.button{
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;

}
a.button:hover{
    background-color: red;
    text-decoration: none;
    color: #fff;
}
