Untitled
/* Basic Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; } header { background-color: #333; padding: 10px; } header .logo { display: inline-block; color: white; font-size: 1.5rem; } header ul { list-style: none; float: right; } header ul li { display: inline; margin-left: 20px; } header ul li a { color: white; text-decoration: none; } /* Carousel */ .carousel-container { display: flex; overflow: hidden; width: 100%; height: 400px; /* Adjust the height to fit your images */ } .carousel-item { min-width: 100%; transition: transform 0.5s ease-in-out; } .carousel-item img { width: 100%; height: 100%; object-fit: cover; /* Ensures the image covers the full carousel area */ } /* Footer */ footer { background-color: #333; color: white; text-align: center; padding: 10px 0; position: relative; bottom: 0; width: 100%; } /* Registration Form */ .registration-form { width: 50%; margin: 0 auto; } .registration-form form { display: flex; flex-direction: column; } .registration-form form label, .registration-form form input, .registration-form form select, .registration-form form button { margin-bottom: 15px; } /* Responsive */ @media (max-width: 768px) { .registration-form { width: 80%; } }
Leave a Comment