body {
font-family: ‘Arial’, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9; /* Light background for contrast */
color: #333;
}
.hero {
background-color: #ff3d00; /* Bright red for the hero section */
color: white;
text-align: center;
padding: 80px 20px;
border-bottom: 5px solid #e63946; /* Darker red for a distinct bottom border */
}
.hero h1 {
font-size: 3.5em;
margin: 0;
line-height: 1.2;
}
.hero p {
font-size: 1.5em;
margin: 20px 0;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 30px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.tools {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 30px;
}
.tool-card {
background-color: #ffab91; /* Light red for tool cards */
border-radius: 10px;
text-align: center;
padding: 20px;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.tool-card:hover {
transform: scale(1.05); /* Slightly enlarge on hover */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.tool-card a {
text-decoration: none;
color: white;
font-size: 1.3em;
font-weight: bold;
padding: 10px 20px;
background-color: #e63946; /* Darker red for buttons */
border-radius: 5px;
transition: background-color 0.3s;
display: inline-block; /* Center the button */
}
.tool-card a:hover {
background-color: #d62839; /* Darker shade on hover */
}
h2 {
text-align: center;
margin-bottom: 30px;
font-size: 2.5em;
color: #e63946; /* Darker red for headings */
}
.emoji {
font-size: 1.5em;
}
@media (max-width: 600px) {
.hero h1 {
font-size: 2.5em;
}
.hero p {
font-size: 1.2em;
}
}
Utilities 🚀
Your all-in-one solution for essential online tools!
Visited 15 times, 1 visit(s) today