diff --git a/css/about.css b/css/about.css index 91149e6..6990a6b 100644 --- a/css/about.css +++ b/css/about.css @@ -1,38 +1,45 @@ -.about-section { - margin-top: 70px; - padding-top: 40px; - background: linear-gradient(135deg, rgba(28, 31, 36, 0.8), rgba(45, 59, 69, 0.8), rgba(0, 0, 0, 0.8)); - color: #dfe1e5; - text-align: center; - height: 82vh; - background-repeat: no-repeat; - background-size: cover; - position: relative; - overflow: hidden; +body { + font-family: Arial, sans-serif; + background-color: #f4f4f4; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +.container { + background-color: white; + padding: 20px; + border-radius: 5px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + max-width: 400px; + width: 100%; } -.about-section h2 { - font-size: 36px; +h1 { margin-bottom: 20px; + text-align: center; + color: #007bff; } -.about-section p { - font-size: 18px; - line-height: 1.6; - max-width: 800px; - margin: 0 auto 20px auto; +input, textarea { + width: 100%; + padding: 10px; + margin: 10px 0; + border: 1px solid #ccc; + border-radius: 5px; } -.about-section a { - display: inline-block; - padding: 10px 20px; - background-color: #007BFF; - color: white; - text-decoration: none; - border-radius: 5px; - transition: background-color 0.3s; +button { + width: 100%; + padding: 10px; + background-color: #007bff; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; } -.about-section a:hover { - background-color: #0056b3; +button:hover { + background-color: #0056b3; }