Files
kaubuntu.re/css/styles.css
T
2025-04-10 10:33:19 +04:00

1425 lines
25 KiB
CSS

/* Styles généraux */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-red: #FF0000;
--primary-green: #008000;
--primary-black: #000000;
--sidebar-bg: #f5f5f5;
--footer-bg: #f0f0f0;
--main-bg: #ffffff;
--text-color: #000000;
--tag-bg: #f8f8f8;
--tag-border: #e0e0e0;
--search-bg: #e0e0e0;
--card-bg: #ffffff;
--card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
--divider-color: #e5e5e5;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--main-bg);
display: flex;
flex-direction: column;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
a {
text-decoration: none;
color: var(--text-color);
}
img {
max-width: 100%;
height: auto;
}
/* Layout */
.sidebar {
width: 250px;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: var(--sidebar-bg);
overflow-y: auto;
padding: 15px 0;
z-index: 100;
}
.main-content {
margin-left: 250px;
width: calc(100% - 250px);
padding: 20px;
}
/* Logo */
.logo {
display: block;
padding: 10px 15px;
margin-bottom: 20px;
}
.logo img {
height: 100px;
}
/* Navigation */
.sidebar-nav {
margin-bottom: 30px;
}
.nav-item {
display: flex;
align-items: center;
padding: 12px 15px;
font-size: 18px;
font-weight: 500;
transition: background-color 0.2s;
}
.nav-item:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.nav-item i, .nav-item img {
margin-right: 15px;
width: 24px;
text-align: center;
}
.nav-divider {
height: 1px;
background-color: var(--divider-color);
margin: 15px 0;
}
.category-title {
font-size: 20px;
font-weight: 600;
padding: 10px 15px;
margin-top: 20px;
}
.tag-item {
display: flex;
align-items: center;
padding: 8px 15px;
font-size: 16px;
}
.tag-item .tag-dot {
width: 16px;
height: 16px;
border-radius: 50%;
background-color: var(--primary-red);
margin-right: 15px;
}
/* Header */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: var(--main-bg);
position: sticky;
top: 0;
z-index: 50;
}
.search-container {
flex: 1;
max-width: 600px;
margin: 0 auto;
}
.search-container form {
display: flex;
position: relative;
}
.search-container input {
width: 100%;
padding: 12px 15px;
border: none;
border-radius: 4px;
background-color: var(--search-bg);
font-size: 16px;
}
.search-container button {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
color: #555;
font-size: 18px;
}
.social-icons, .action-icons {
display: flex;
align-items: center;
}
.icon-button {
background: none;
border: none;
font-size: 24px;
margin-left: 15px;
cursor: pointer;
}
.icon-button i {
color: var(--text-color);
}
/* Priorité plus élevée pour les couleurs des réseaux sociaux */
.icon-button i.icon-facebook,
.icon-button i.icon-youtube,
.icon-button i.icon-instagram,
.icon-button i.icon-tiktok,
.icon-button i.icon-twitter {
color: inherit;
}
/* Hero Section */
.hero-mastodon-wrapper {
display: flex;
gap: 20px;
margin-bottom: 30px;
}
.hero {
position: relative;
width: 50%;
height: 400px;
background-color: #888;
overflow: hidden;
border-radius: 8px;
}
/* Styles pour le lecteur vidéo dans le hero */
.hero-video-container {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.hero-video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.hero-video-info {
position: absolute;
bottom: 70px;
left: 0;
width: 100%;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
color: #fff;
padding: 15px;
z-index: 5;
pointer-events: none;
}
.hero-video-info h2 {
font-size: 16px;
margin-bottom: 5px;
font-weight: 600;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
opacity: 0.9;
}
.hero-channel-info {
display: flex;
align-items: center;
opacity: 0.8;
}
.hero-channel-info .channel-avatar,
.hero-channel-info .channel-avatar-placeholder {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 8px;
}
.hero-channel-info .channel-name {
font-size: 14px;
font-weight: 500;
}
.live-badge {
position: absolute;
top: 10px;
left: 10px;
background-color: var(--primary-red);
color: white;
border-radius: 4px;
padding: 5px 10px;
font-size: 14px;
font-weight: bold;
z-index: 10;
display: flex;
align-items: center;
gap: 5px;
}
.live-badge i {
font-size: 10px;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
/* Message quand aucun direct n'est disponible */
.hero-no-live {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.7);
color: white;
text-align: center;
padding: 20px;
}
.hero-no-live i {
font-size: 50px;
margin-bottom: 20px;
opacity: 0.8;
}
.hero-no-live h2 {
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
}
.hero-no-live p {
font-size: 16px;
max-width: 80%;
opacity: 0.9;
}
#mt-container {
width: 50%;
height: 400px;
border-radius: 8px;
display: flex;
flex-direction: column;
}
.mt-header {
padding: 12px 15px;
background: linear-gradient(45deg, #000000, #333333);
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.mt-title {
color: white;
font-size: 20px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
text-align: center;
}
.mt-title i {
color: var(--primary-red);
}
.mt-body {
height: calc(100% - 50px);
overflow-y: auto;
}
.hero-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
}
.hero-logo {
font-size: 50px;
font-weight: 700;
margin-bottom: 20px;
text-transform: uppercase;
}
.hero-logo .re {
color: var(--primary-red);
}
.play-button {
width: 80px;
height: 80px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.play-button i {
color: white;
font-size: 36px;
}
/* Tags Section */
.tags-section {
margin-bottom: 30px;
overflow-x: auto;
white-space: nowrap;
padding-bottom: 10px;
}
.tag {
display: inline-block;
padding: 8px 15px;
margin-right: 10px;
border: 1px solid var(--tag-border);
border-radius: 20px;
font-size: 14px;
background-color: var(--tag-bg);
cursor: pointer;
transition: background-color 0.2s;
}
.tag:hover {
background-color: rgba(0, 0, 0, 0.05);
}
/* Section Headers */
.section-header {
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 20px;
}
.section-logo {
margin-right: 15px;
}
.section-logo img {
height: 80px;
}
.section-title {
font-size: 24px;
font-weight: 600;
}
/* Video Sections */
.video-section {
margin-bottom: 40px;
position: relative;
}
.video-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.video-card {
background-color: var(--card-bg);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--card-shadow);
transition: transform 0.3s;
cursor: pointer;
height: 100%;
display: flex;
flex-direction: column;
}
.video-card:hover {
transform: translateY(-5px);
}
.video-thumbnail {
position: relative;
padding-top: 56.25%; /* 16:9 aspect ratio */
overflow: hidden;
}
.video-thumbnail img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.video-play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 50px;
opacity: 0;
transition: opacity 0.3s;
}
.video-card:hover .video-play-icon {
opacity: 1;
}
.video-info {
padding: 15px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.video-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
flex-grow: 1;
}
.video-channel {
font-size: 14px;
color: #555;
margin-bottom: 8px;
display: flex;
align-items: center;
overflow: hidden;
}
.channel-avatar {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 8px;
object-fit: cover;
flex-shrink: 0;
border: 1px solid #e5e5e5;
}
.channel-avatar-placeholder {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 8px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #e5e5e5;
color: #666;
font-size: 16px;
}
.channel-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.4;
display: flex;
align-items: center;
}
.video-metadata {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12px;
color: #666;
margin-top: auto;
}
.video-metadata i {
margin-right: 4px;
font-size: 13px;
color: var(--primary-red);
}
.video-views, .video-date {
display: flex;
align-items: center;
font-size: 12px;
}
.video-duration {
position: absolute;
bottom: 10px;
right: 10px;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 3px 6px;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
}
.video-tag {
display: inline-block;
padding: 3px 8px;
background-color: #f0f0f0;
border-radius: 4px;
font-size: 12px;
margin-right: 5px;
}
/* Carousel */
.carousel {
position: relative;
overflow: hidden;
margin: 15px 0 30px;
padding: 10px 0;
}
.carousel-container {
display: flex;
transition: transform 0.5s ease;
padding-bottom: 10px;
}
.carousel-item {
flex: 0 0 auto;
width: 220px;
margin-right: 20px;
}
.carousel-controls {
display: flex;
justify-content: center;
margin-top: 15px;
}
.carousel-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #ccc;
margin: 0 5px;
cursor: pointer;
transition: all 0.2s ease;
}
.carousel-dot.active {
background-color: var(--primary-red);
transform: scale(1.2);
}
/* View More Button */
.view-more {
display: block;
width: max-content;
margin: 25px auto 5px;
padding: 12px 30px;
background-color: var(--primary-red);
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
text-transform: uppercase;
letter-spacing: 1px;
}
.view-more:hover {
background-color: #cc0000;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.view-more:disabled {
background-color: #999;
cursor: not-allowed;
transform: none;
box-shadow: none;
}
/* Info Section */
.info-section {
margin: 40px 0;
padding: 30px;
background-color: var(--card-bg);
border-radius: 8px;
box-shadow: var(--card-shadow);
}
.info-header {
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
}
.info-text {
font-size: 16px;
line-height: 1.6;
margin-bottom: 20px;
}
.info-text a {
color: var(--primary-red);
font-weight: bold;
text-decoration: underline;
transition: opacity 0.2s;
}
.info-text a:hover {
opacity: 0.8;
}
/* Styles pour les licences Creative Commons */
.cc-licenses {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 30px 0;
}
.cc-license {
flex: 1 0 300px;
background-color: #f8f8f8;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cc-logo {
height: 31px;
margin-bottom: 15px;
}
.cc-license h4 {
font-size: 16px;
font-weight: 600;
margin-bottom: 10px;
color: #333;
}
.cc-license p {
font-size: 14px;
line-height: 1.5;
color: #555;
}
.info-image {
width: 100%;
margin: 20px 0;
}
/* Footer */
.footer {
margin-top: 40px;
margin-left: 250px;
width: calc(100% - 250px);
padding: 50px 30px 30px;
background-color: var(--footer-bg);
border-top: 1px solid #e0e0e0;
box-sizing: border-box;
align-self: stretch;
color: #444;
}
.footer-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
padding-bottom: 30px;
border-bottom: 1px solid #e0e0e0;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.footer-logo {
margin: 0;
cursor: pointer;
}
.footer-logo img {
height: 90px;
transition: transform 0.3s;
cursor: pointer;
}
.footer-logo img:hover {
transform: scale(1.05);
}
.footer-contact-info {
text-align: right;
}
.footer-contact {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: #333;
}
.footer-email {
font-size: 16px;
}
.footer-email a {
color: #555;
text-decoration: none;
transition: color 0.2s;
}
.footer-email a:hover {
color: var(--primary-red);
}
.footer-columns {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
text-align: left;
margin-bottom: 40px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.footer-column {
flex: 1;
min-width: 200px;
padding: 0 20px;
margin-bottom: 30px;
}
.footer-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
color: #333;
position: relative;
padding-bottom: 10px;
}
.footer-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background-color: var(--primary-red);
}
.footer-links {
list-style-type: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: #555;
text-decoration: none;
font-size: 15px;
transition: all 0.2s;
display: inline-block;
position: relative;
}
.footer-links a:hover {
color: var(--primary-red);
transform: translateX(5px);
}
.footer-links a i {
margin-right: 8px;
}
.footer-copyright {
padding-top: 25px;
border-top: 1px solid #e0e0e0;
font-size: 14px;
color: #666;
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.footer-copyright a {
color: var(--primary-red);
font-weight: bold;
text-decoration: underline;
transition: opacity 0.2s;
}
.footer-copyright a:hover {
opacity: 0.8;
}
.footer-social {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 25px;
gap: 20px;
}
.footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
color: var(--text-color);
font-size: 20px;
transition: all 0.3s;
min-width: 40px;
min-height: 40px;
aspect-ratio: 1/1;
}
.footer-social a:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 1000px) {
.footer {
margin-left: 0;
width: 100%;
padding: 40px 20px 20px;
}
.footer-header {
flex-direction: column;
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
}
.footer-logo {
margin-bottom: 20px;
}
.footer-contact-info {
text-align: center;
}
.footer-columns {
flex-direction: column;
align-items: center;
}
.footer-column {
text-align: center;
margin-bottom: 30px;
width: 100%;
max-width: 400px;
}
.footer-title::after {
left: 50%;
transform: translateX(-50%);
}
.footer-links a:hover {
transform: none;
}
}
/* Dark Mode Toggle */
.dark-mode-toggle {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: var(--text-color);
margin-left: 15px;
}
/* Mobile Menu */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
position: relative;
z-index: 200;
margin-left: 15px;
}
.mobile-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--main-bg);
z-index: 150;
padding: 60px 20px 20px;
transform: translateX(-100%);
transition: transform 0.3s;
}
.mobile-menu.active {
transform: translateX(0);
}
.mobile-menu-close {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
}
/* Media Queries */
@media (max-width: 1200px) and (min-width: 1001px) {
.sidebar {
width: 70px;
}
.main-content, .footer {
margin-left: 70px;
width: calc(100% - 70px);
}
.nav-item span {
display: none;
}
/* Masquer complètement la section Hashtags */
.category-title,
.tag-item {
display: none;
}
.nav-item {
justify-content: center;
padding: 15px 0;
position: relative;
}
.nav-item i {
margin-right: 0;
font-size: 20px;
}
/* Tooltip for compact mode */
.nav-item:hover::after {
content: attr(data-title);
position: absolute;
left: 70px;
top: 50%;
transform: translateY(-50%);
background: var(--sidebar-bg);
color: var(--text-color);
padding: 5px 10px;
border-radius: 4px;
white-space: nowrap;
box-shadow: 0 1px 5px rgba(0,0,0,0.2);
z-index: 100;
}
.logo {
text-align: center;
padding: 10px 0;
}
.logo img {
height: 50px;
}
}
@media (max-width: 1000px) {
.sidebar {
display: none;
}
.main-content, .footer {
margin-left: 0;
width: 100%;
}
.mobile-menu-toggle {
display: block;
}
.header {
padding: 10px 15px;
justify-content: space-between;
}
.search-container {
max-width: 50%;
}
.social-icons {
display: none;
}
.action-icons {
display: flex;
align-items: center;
}
.hero-mastodon-wrapper {
flex-direction: column;
}
.hero, #mt-container {
width: 100%;
height: 300px;
}
#mt-container {
height: 600px;
}
/* Réduire la taille des boutons du footer Mastodon en mobile */
.mt-footer .mt-btn-violet {
font-size: 12px !important;
padding: 5px 10px !important;
}
.hero-logo {
font-size: 40px;
}
.footer-columns {
flex-direction: column;
}
.footer-column {
text-align: center;
margin-bottom: 30px;
}
}
@media (max-width: 992px) {
.video-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.video-title {
font-size: 15px;
}
}
@media (max-width: 576px) {
.video-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.section-title {
font-size: 20px;
}
.hero-logo {
font-size: 36px;
}
.play-button {
width: 60px;
height: 60px;
}
.play-button i {
font-size: 24px;
}
.video-title {
font-size: 16px;
}
.cc-licenses {
gap: 15px;
}
.cc-license {
flex: 1 0 100%;
padding: 15px;
}
.cc-license h4 {
font-size: 15px;
}
.cc-license p {
font-size: 13px;
}
.info-section {
padding: 20px 15px;
}
.footer-social {
gap: 10px;
}
.footer-social a {
width: 35px;
height: 35px;
min-width: 35px;
min-height: 35px;
font-size: 18px;
margin: 0 5px;
}
.mobile-social-icons {
gap: 10px;
}
.mobile-social-icons a {
width: 35px;
height: 35px;
min-width: 35px;
min-height: 35px;
font-size: 18px;
}
}
@media (max-width: 400px) {
.cc-license {
padding: 12px;
}
.cc-logo {
height: 25px;
}
.cc-license h4 {
font-size: 14px;
}
.footer-social {
gap: 5px;
flex-wrap: wrap;
justify-content: center;
}
.footer-social a {
width: 32px;
height: 32px;
min-width: 32px;
min-height: 32px;
font-size: 16px;
margin: 0 3px;
}
.mobile-social-icons {
gap: 5px;
flex-wrap: wrap;
}
.mobile-social-icons a {
width: 32px;
height: 32px;
min-width: 32px;
min-height: 32px;
font-size: 16px;
}
}
/* Styles pour le menu dropdown des réseaux sociaux */
.more-social-container {
position: relative;
}
.more-social-dropdown {
position: absolute;
top: 100%;
right: 0;
width: 180px;
background-color: var(--main-bg);
border-radius: 4px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
padding: 10px 0;
display: none;
z-index: 100;
}
.more-social-container:hover .more-social-dropdown,
.more-social-toggle:focus + .more-social-dropdown,
.more-social-dropdown:hover {
display: block;
}
.more-social-item {
display: flex;
align-items: center;
padding: 10px 15px;
font-size: 14px;
transition: background-color 0.2s;
}
.more-social-item:hover {
background-color: rgba(0,0,0,0.05);
}
.more-social-item i {
margin-right: 10px;
font-size: 18px;
width: 20px;
text-align: center;
color: inherit;
}
@media (max-width: 1000px) {
.more-social-dropdown {
right: -15px;
}
}
/* Styles pour les icônes des réseaux sociaux avec leurs couleurs officielles */
i.icon-facebook,
.fab.fa-facebook.icon-facebook {
color: #1877F2 !important; /* Bleu Facebook */
}
i.icon-youtube,
.fab.fa-youtube.icon-youtube {
color: #FF0000 !important; /* Rouge YouTube */
}
i.icon-instagram,
.fab.fa-instagram.icon-instagram {
/* Imiter le dégradé Instagram avec une couleur principale */
color: #E1306C !important; /* Rose/magenta Instagram */
}
i.icon-tiktok,
.fab.fa-tiktok.icon-tiktok {
color: #000000 !important; /* Noir TikTok */
}
i.icon-tiktok-accent {
color: #EE1D52 !important; /* Rouge TikTok */
}
i.icon-x,
.fab.fa-x-twitter.icon-x,
.fab.fa-x.icon-x {
color: #000000 !important; /* Noir X (anciennement Twitter) */
}
/* Maintenir la couleur par défaut pour les icônes dans le footer */
.footer-social a {
margin: 0 10px;
font-size: 24px;
color: var(--text-color);
}
/* Ajustements pour le menu déroulant des réseaux sociaux */
.more-social-item i {
margin-right: 10px;
font-size: 18px;
width: 20px;
text-align: center;
/* Supprimer la couleur rouge par défaut pour utiliser les classes spécifiques */
color: inherit;
}
/* Styles pour le menu mobile des réseaux sociaux */
.mobile-social-icons {
display: flex;
justify-content: center;
gap: 20px;
margin: 15px 0;
padding: 10px 15px;
}
.mobile-social-icons a {
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #f5f5f5;
transition: transform 0.2s, background-color 0.2s;
min-width: 40px;
min-height: 40px;
aspect-ratio: 1/1;
}
.mobile-social-icons a:hover {
transform: scale(1.1);
background-color: #e8e8e8;
}
@media (max-width: 1000px) {
.mobile-menu-section .social-icons {
display: flex;
}
}
.mobile-section-title {
font-size: 18px;
font-weight: 600;
margin: 20px 0 10px;
padding: 0;
color: #333;
text-align: center;
}