body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

img {
    width: 50%;
}

header {
    background-color: red;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fancy-section {
    margin: 20px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fancy-section:hover {
    transform: translateY(-5px);
}

form {
    display: flex;
    flex-direction: column;
    align-items: left;
}



form input, form textarea {
    /* width: 100%; */
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
form input {
    width: 200px;
}

form textarea {
    width: 95%;
}

form button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    margin-top: 30px;
    padding: 20px 0;
    background-color: #e0e0e0;
    border-top: 1px solid #ccc;
}

/* Existing styles */

.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep it behind the content */
    transition: background-color 0.5s;
}

.parallax {
    background-image: url('path-to-your-parallax-image.jpg'); /* Add your image path here */
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
