/* General */ body { margin: 0; font-family: Arial, sans-serif; background: linear-gradient(to bottom, #00BF62 0%, #5D17EA 100%); color: #333; } /* Navbar */ .navbar { display: flex; justify-content: space-between; align-items: center; background-color: #00BF62; padding: 5px 15px; } .navbar .tabs a { color: #5721E1; font-size: 14px; font-weight: bold; text-decoration: none; padding: 5px 10px; border-radius: 5px; transition: background-color 0.3s ease, color 0.3s ease; } .navbar .tabs a:hover { background-color: #5721E1; color: white; } /* Header */ .header h1 { font-size: 4rem; animation: fadeInScale 1.5s ease-in-out; } .header p { font-size: 1.2rem; } /* Social Media */ .social-media p { color: white; font-weight: bold; text-transform: uppercase; } .social-icons img { width: 30px; height: 30px; transition: transform 0.3s ease; } .social-icons img:hover { transform: scale(1.2); } /* Footer */ .footer { background-color: #5D17EA; color: white; text-align: center; font-size: 0.8rem; padding: 10px; }