diff --git a/src/App.css b/src/App.css index f7cbb2c..05f8377 100644 --- a/src/App.css +++ b/src/App.css @@ -1,5 +1,68 @@ -*{ - margin: 0; - padding: 0; - box-sizing: border-box; -} \ No newline at end of file +/* Reset general */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + } + + + + /* Contenedor principal */ + .contact { + background-color: #ffffff; + padding: 2rem; + border-radius: 8px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + max-width: 90%; /* Se adapta al ancho de la pantalla */ + width: 400px; /* Ancho máximo para pantallas grandes */ + text-align: center; + align-items: center; + } + + /* Título */ + .contact h2 { + margin-bottom: 1.5rem; + font-size: 1.8rem; + color: #333333; + } + + /* Formulario */ + .contact form { + display: flex; + flex-direction: column; + gap: 1rem; /* Espacio entre los campos */ + } + + /* Campos del formulario */ + .contact input, + .contact textarea { + width: 100%; /* Asegura que los campos ocupen todo el ancho del contenedor */ + padding: 0.8rem; + border: 1px solid #cccccc; + border-radius: 4px; + font-size: 1rem; + background-color: #f9f9f9; + } + + /* Campo de texto grande */ + .contact textarea { + resize: none; + height: 100px; + } + + /* Botón */ + .contact .submit-button { + padding: 0.8rem; + background-color: #007bff; + color: #ffffff; + border: none; + border-radius: 4px; + font-size: 1rem; + cursor: pointer; + transition: background-color 0.3s ease; + } + + .contact .submit-button:hover { + background-color: #0056b3; + } + \ No newline at end of file diff --git a/src/Components/EventPlanner.jsx b/src/Components/EventPlanner.jsx index d1f9abd..4d6486c 100644 --- a/src/Components/EventPlanner.jsx +++ b/src/Components/EventPlanner.jsx @@ -1,5 +1,6 @@ import React from 'react'; import './EventPlanner.css'; // Import CSS file for styling +import Footer from './Footer'; const EventPlanner = () => { return ( @@ -7,8 +8,79 @@ const EventPlanner = () => {

Welcome to Event Planner

+
+

+ Plan and organize your events effortlessly with Event Planner. From + birthdays to corporate meetings, we've got you covered. +

+ +
+
+ + + + + +
+
+

Features

+ +
+
+

Testimonials

+
+

"Event Planner made organizing my wedding a breeze. Highly recommended!"

+

- Emily Johnson

+
+
+

"I use Event Planner for all my corporate events. It saves me so much time and effort!"

+

- John Smith

+
+
+
+

Contact Us

+
+ + + + + +
+
+