* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    position: relative;
    background-color: #ffffff;
    text-align: center;
    padding: 150px 0 100px 0; /* Increased padding-top to 150px */
}


.content {
    max-width: 600px;
    margin: 0;
    text-align: left;
    padding-left: 100px; /* Add left padding to move the content to the right */
}

.content h1 {
    font-size: 70px;
    color: #222;
}

.content p {
    margin: 10px 0 30px;
    color: #333;
}

.search-bar {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 20px 0;
    text-align: left;
    padding-left: 20px; /* Adjust the left padding to move the search bar to the left */
}

.search-bar input {
    flex: 1;
    padding: 10px;
    border: 1px solid #9e8b8b;
    border-radius: 5px;
    font-size: 16px;
}

.search-bar button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #df4881;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}


/* Optional hover effect for the search button */
.search-bar button:hover {
    background-color: #c430d7;
}

.pasta {
    width: 550px;
    position: absolute;
    top: 5rem;
    right: 7rem; /* Adjust this value to move the image to the right */
}

