.animation-content { display:flex; justify-content: center;} .logo { width: 50px; } body { font-family: 'Onest', 'Inter', sans-serif; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: #f5f5f5; color: #333; } .header { background-color: #fff; width: 100%; padding: 20px 0; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #eee; } .header img { height: 30px; } .content { text-align: center; margin: 0px 0px; } .content h1 { font-size: 2em; margin-bottom: 20px; } .content p { font-size: 1.2em; margin-bottom: 40px; } .content .button { display: inline-block; padding: 12px 32px; font-size: 16px; line-height: 1.5; font-weight: 600; text-decoration: none; background-color: #5D33FB; color: #fff; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.15s ease; } .content .button:hover { background-color: #4726c9; } .images { display: flex; justify-content: center; align-items: center; gap: 20px; } .images img { width: 300px; border-radius: 10px; } .footer { margin-top: 40px; font-size: 1em; color: #666; } /* Onest (with Inter fallback) for the plugin's About page UI. Explicit selectors so Bootstrap's font-family does not win by specificity. */ .navbar-brand, .content, .content h1, .content p, .content .button { font-family: 'Onest', 'Inter', sans-serif; }