/* Основные стили */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #1c1c1c; color: #ffffff; } /* Шапка */ header { display: flex; justify-content: space-between; align-items: center; background-color: #000000; color: white; padding: 10px 20px; } header .logo h1 { margin: 0; } .logo a { color: inherit; text-decoration: none; } header nav ul { list-style: none; margin: 0; padding: 0; display: flex; } header nav ul li { margin-left: 20px; } header nav ul li a { color: white; text-decoration: none; } header .auth a { color: white; margin-left: 15px; text-decoration: none; } /* Главное меню */ main { background-color: #333333; padding: 20px; } /* Секция с информацией об орангутанах */ .info-section .image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .image-item { text-align: justify; } .image-item img { width: 100%; height: 400px; object-fit: cover; } /* Секция партнеров */ .partners-section .partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .partner-item { border: 1px solid #555555; padding: 10px; text-align: center; } .partner-item img { width: 400px; /* чтобы логотипы не выходили за пределы блока */ height: 400px; /* сохранять пропорции изображения */ margin-bottom: 10px; /* отступ под логотипом */ } .partner-link { display: inline-block; /* чтобы кнопка корректно отображалась */ margin-top: 10px; /* отступ сверху */ padding: 10px 15px; /* внутренние отступы кнопки */ background-color: #555555; /* цвет фона кнопки */ color: white; /* цвет текста кнопки */ } /* Подвал */ footer { background-color: #000000; color: white; text-align: center; padding: 10px 20px; display: flex; margin: 0 auto; justify-content: center; align-items: center; text-align: center; } .footer-content { text-align: center; } /* Форма регистрации */ .registration-section { background-color: #333333; color: white; padding: 20px; margin: 20px; border-radius: 10px; } .registration-section h2 { margin-top: 0; } .registration-section form { display: flex; flex-direction: column; align-items: center; } .registration-section .form-group { margin-bottom: 20px; width: 300px; } .registration-section label { display: block; margin-bottom: 5px; } .registration-section input[type="text"], .registration-section input[type="email"], .registration-section input[type="password"] { width: 100%; padding: 10px; border: 1px solid #555555; border-radius: 5px; } .registration-section button { padding: 10px 20px; background-color: #555555; color: white; border: none; border-radius: 5px; cursor: pointer; } .registration-section button:hover { background-color: #333333; } /* Форма входа */ .auth { display: flex; } .login-link, .registrer-link { margin-right: 10px; } .login-section { background-color: #333333; color: white; padding: 20px; margin: 20px; border-radius: 10px; } .login-section h2 { margin-top: 0; } .login-section form { display: flex; flex-direction: column; align-items: center; } .login-section .form-group { margin-bottom: 20px; width: 300px; } .login-section label { display: block; margin-bottom: 5px; } .login-section input[type="text"], .login-section input[type="password"] { width: 100%; padding: 10px; border: 1px solid #555555; border-radius: 5px; } .login-section button { padding: 10px 20px; background-color: #555555; color: white; border: none; border-radius: 5px; cursor: pointer; } .login-section button:hover { background-color: #333333; } /* Личный кабинет */ .profile-section { background-color: #333333; color: white; padding: 20px; margin: 20px; border-radius: 10px; } .profile-section h2 { margin-top: 0; } .profile-section form { display: flex; flex-direction: column; align-items: center; } .profile-section .form-group { margin-bottom: 20px; width: 300px; } .profile-section label { display: block; margin-bottom: 5px; } .profile-section input[type="text"], .profile-section input[type="email"], .profile-section input[type="password"] { width: 100%; padding: 10px; border: 1px solid #555555; border-radius: 5px; } .profile-section button { padding: 10px 20px; background-color: #555555; color: white; border: none; border-radius: 5px; cursor: pointer; } .profile-section button:hover { background-color: #333333; }