@keyframes moveInRight {
    0% {
        transform: translateX(10rem);
        opacity: 0;
    }

    50% {
        transform: translateX(-1rem);
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


body {
    background-color: #101319 ;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
    justify-content: space-between;
    background-color: #2b303a;
    align-items: center;
    padding: 20px 20px;
}

.logo-image{
    width: 300px;
    height: 100px;
    overflow: hidden;
    margin-top: -6px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.menu-container {
    display: flex;
    gap: 53px;
    
}

ul {
    list-style: none;
}

.menu-container a:hover {
    color: #6B0504;

}

.a {
    text-decoration: none;
    color: #e0b7b6;
    transition: all 0.2s ease-in-out;
    list-style: none;
    font-size: 20px;

}

.head {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right bottom, rgba(255, 58, 58, 0.605), rgba(255, 251, 231, 0.3)), url(../img//the-addams-family-house-rain.jpg);
    background-size: cover;
    padding-bottom: 90px;
    
}

.cls-1{
    fill:#6B0504;
}



.h1 {
    font-size: 50px;
    margin-top: -10px;
    font-weight: lighter;
    margin-left: 40px;
    animation: moveInRight 2s ease-in;
    
}


/* About us */

.why {
    padding: 20px 20px;
    /* background-color: #6b0604bd; */
    margin: 10px 40px;
    
    
}

.h21 {
    font-size: 60px;
    color: #ece2e2;
    text-align: center;
}

.txt {
    display: flex;
    justify-content: center;
    gap: 100px;
    color: #ece2e2;
}
.h31 {
    font-size: 15px;
    color: #ece2e2;
    font-weight: lighter;
    text-align: center;
}

.happy {
    width: 400px;
    
    
    
}

.img {
    padding-left:0px;
}

.h3txt {
    padding-top:50px;
    width: 500px;
    line-height: 50px;
}







@media ( max-width: 1400px) {


    .txt {
        flex-direction: column;
        align-items: center;
    }
    .h1 {
        padding-top: 180px;
        text-align: center;
    }

    .menu {
        flex-direction: column;
    }
}
