.heading {
    display: flex;
    justify-content: center;
    font-family: "Cactus Classical Serif", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
      
}

.one {
    background-image: url('https://images.unsplash.com/photo-1554995207-c18c203602cb?ixid=MnwxMjA3fDB8MHxzZWFyY2h8NTF8fHNvZmF8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
}

.two {
    background-image: url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixid=MnwxMjA3fDB8MHxzZWFyY2h8M3x8c29mYXxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
}

.three {
    background-image: url('https://images.unsplash.com/photo-1560448204-603b3fc33ddc?ixid=MnwxMjA3fDB8MHxzZWFyY2h8NDd8fHNvZmF8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
}

.four {
    background-image: url('https://images.unsplash.com/photo-1602872030490-4a484a7b3ba6?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTF8fGRpbmluZyUyMHRhYmxlfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
}

.five {
    background-image: url('https://images.unsplash.com/photo-1484101403633-562f891dc89a?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Nnx8c29mYXxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
}

.six {
    background-image: url('https://images.unsplash.com/photo-1582582621959-48d27397dc69?ixid=MnwxMjA3fDB8MHxzZWFyY2h8N3x8YmVkfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
}


.container {
    display: flex;
}
.item {
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "Cactus Classical Serif", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    flex: 1;
    margin: 5px;
    position: relative;
}

h4 {
    position: absolute;
    top: 15px;
    left: 40px;
    background-color: white;
    color: black;
    font-size: 0;
    
}

body {
    background-color:#faf1e6;
}

.price {
    position: absolute;
    bottom: 35px;
    left: 30px;
    font-size: 25px;
    background-color: white;
    color: black;
    transition: all 2s;
    font-size: 0;
}

.paragraph {
    position: absolute;
    font-size: 20px;
    top: 100px;
    right: 40px;
    background-color: white;
    color: black;
    transition: all 2s ease-in;
    font-size: 0;
}

.selected {
    flex: 4;
    transition: all 2s ease-in;
}

.selected h4 {
    font-size: 40px;
    transition: all 2s ease-in;
}

.selected .paragraph {
    font-size: 30px;
    transition: all 2s ease-in;
}

.selected .price {
    font-size: 35px;
    transition: all 2s ease-in;
}

.heading {
    font-family: "Cactus Classical Serif", serif;
}

.form {
    font-size: 20px;
    margin: 5px;
}

.btn {
    padding: 10px;
    border-radius: 15px;
    background-color: white;
    font-family: "Cactus Classical Serif", serif;
    border-color: #00adb5;
}

.btn:hover {
    background-color: #5accd2;
    transition-duration: 2s;
    border-color: #01585d;
}

.text-input {
    background-color: #faf1e6;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

.textarea {
    background-color: #faf1e6;
    padding: 15px;
    border-radius: 5px;
    border: none;
}

@media all and (max-width: 1000px) {
    h1 {
        font-size: 55px;
    }

    .heading {
        font-size: 30px;
    }

    .item {
        height: 70vh;
    }

    .selected h4 {
        font-size: 35px;
        left: 20px;
    }

    .selected .paragraph {
        font-size: 25px;
    }

    .selected .price {
        font-size: 30px;
    }

    .btn {
        font-size: 20px;
    }


}

@media all and (max-width: 800px) {
    h1 {
        font-size: 45px;
    }

    .container {
        flex-direction: column;
        height: 100vh;
    }
}

@media all and (max-width: 500px) {

    h1 {
        font-size: 35px;
    }

    .heading {
        font-size: 20px;
    }

    .item {
        height: 60vh;
    }

    .selected h4 {
        font-size: 25px;
        left: 20px;
    }

    .selected .paragraph {
        font-size: 15px;
    }

    .selected .price {
        font-size: 20px;
    }

    .container {
        flex-direction: column;
        height: 100vh;
    }

}