
@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;
}






/* Header */

.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/Nosferatu-1922-dracula-vampire-movies.jpg);
    background-size: cover;
    padding-bottom: 90px;
    
}

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

.btn1 {
    background-color: #55090A ;
    margin: 0;
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    font-size: 30px;
    color: #e0b7b6;

}


.texbtn {
    padding-left: 40px;
    margin-top: -150px;
    
}

.h1 {
    font-size: 50px;
    font-weight: lighter;
    animation: moveInRight 2s ease-in;
}

.subh1 {
    font-size: 60px;
    margin-top: -30px;
    font-weight: bold;
}






/*Contact form*/


.form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 500px;
    position:absolute;
    padding-left: 500px;
    padding-bottom: 100px;
}

.contact {

    text-align: center;
    font-size: 40px;
    color: #e0b7b6;
    bottom: -120px;
}


input[type="text"] {
    width: 500px;
    height: 40px;
    border-radius: 5px;
    border-width: thin;
    border-color: #979797;
    text-align: center;
    
}

.text {
    letter-spacing: 2px;
    line-height: 5px;
    color: #e0b7b6;
    text-align: center;
    
}

input[type="submit"] {
    width: 500px;
    height: 40px;

    font-size: 20px;
    letter-spacing: 3px;
    border-radius: 5px;
    border-width: thin;
    color: rgb(255, 255, 255);
    background-image: linear-gradient(#480606, #dd7d6e);
    border: rgba(0, 0, 0, 0) ;
    
}

.sub:hover {
    transform: scale(0.8);
}





@media ( max-width: 1400px) {
    .h1 {
        padding-top: 180px;
    }
    .menu {
        flex-direction: column;
    }

    .form {
        display: flex;
        justify-content: center;
        flex-direction: column;
        max-width: 400px;
        padding-left: 50px;
        padding-bottom: 100px;
    }
    
    input[type="text"] {
        width: 400px;
        height: 40px;
    }


    input[type="submit"] {
        width: 400px;
        height: 40px;
        
    }

}

