*{
    
    transition: all 0.3s ;
}
body{
    height: 100vh;
    background: white;
}
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slide-up 1s ;
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.download_btn{ 
    border-radius: 25px;
    background:  rgba(245, 247, 250, 1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 24px ;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.download_btn:hover{
    background:  rgba(220, 222, 224, 1);
}