background remover tool
Friday, September 12, 2025
Style
/* Header Styles */
header {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo-img {
width: 40px;
height: 40px;
background: white;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: var(--primary);
}
.logo-text {
font-size: 1.5rem;
font-weight: 700;
}
.nav-links {
display: flex;
gap: 25px;
}
.nav-link {
position: relative;
padding: 8px 0;
font-weight: 500;
transition: all 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 3px;
background: white;
border-radius: 10px;
transition: width 0.3s ease;
}
.nav-link:hover {
transform: translateY(-2px);
}
.nav-link:hover::after {
width: 100%;
}
/* Footer */
footer {
background: var(--dark);
color: white;
padding: 40px 0 20px;
}
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}
.footer-links {
flex: 1;
min-width: 200px;
margin-bottom: 20px;
}
.footer-links h3 {
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--accent);
}
.footer-link {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
transition: all 0.3s ease;
}
.footer-link:hover {
color: var(--accent);
transform: translateX(5px);
}
.footer-social {
display: flex;
gap: 15px;
}
.social-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.social-icon:hover {
background: var(--primary);
transform: translateY(-5px);
}
.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: #aaa;
}
Subscribe to:
Posts (Atom)