#text-title1{
    font-size: 50px;
}

.custom-hr{
    background-color: white;
}

.adopt-btn{
    padding: 5px 50px;}

.welcome-title{
    font-size: 50px;
}

body{
    font-family: sans-serif;
}

.slim-para{
    max-width: 600px;
    text-align: center;
    font-size: 20px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Apply animation to the slide-in class */
.slide-in {
    animation: slideIn .8s ease forwards;
}

.fade-in {
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
