@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital@1&family=Poppins:wght@100;400;500&display=swap");
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    color: #282624;
    font-family: 'Poppins';
    cursor: none;
}

html, body {
    height: 100%;
    width: 100%;
    user-select: none;
    
}

body{
    background: rgb(2,0,36);
    background: linear-gradient(117deg, rgba(2,0,36,1) 0%, rgba(58,68,81,1) 97%);
}

.section {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.layer {
    font-size: 100px;
    font-family: 'Gilroy'; 
    color: #fff;
    filter: blur(2px);
    transition: all 0.1s ease-in-out;
}


.cards {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:2%;
    width: 100%;
    height: 100vh;
    padding-left: 1%;
}

.card {
    overflow: hidden;
    width: 400px;
    height: 600px;
    background-color: #E7DFD4;
    border-radius: 25px;
    padding: 25px;
    transition: box-shadow 0.1s ease;
    
}
.card:hover{
    box-shadow: 5px 5px 0px 1px rgba(0,0,0,0.86)
}
::-webkit-scrollbar{
    display: none;
    scroll-behavior: smooth;
}

.card h1{
    color: #282624;
    font-size: 45px;
    font-family: 'Impact';
    letter-spacing: 0.02em;
}
.card h1>span{
    font-size: 1.2rem;
    font-weight: 400;
}
.card img {
    height: 60%;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

.cardets > h3{
    font-weight: 400;
    font-size: 15px;
    white-space: normal;
}

.cardets > h3:last-child{
    margin-top: 15px;
}
.cardets{
    margin-top: 0.5rem;
    box-sizing: border-box;
    
}

#crsrs{
    z-index: 9;
    position : absolute;
    width: 35px;
    height: 35px;
    transition: width 0.2s ease-in , height 0.2s ease-in; 
  }

  #spm{
    position: absolute;
    z-index: 9;
    font-size: 55px;
    color:#fff;
    display: none;
    animation: none;
  }
  

  @keyframes hart{
    0% {
       transform: translate(0, 0%) scale(0);
       opacity: 0%;
    }
    50%{
       transform: translate(0, -100%) scale(1);
       opacity: 100%;
    }
   
    100%{
       transform: translate(0, -50%) scale(0);
       opacity: 0%;
    }
   
   }
   
   #crsrs{
     position : absolute;
     width: 30px;
     height: 30px;
     transition: width 0.2s ease-in , height 0.2s ease-in; 
   }