:root {
    --primary: #007bff;
    --secondary: #6c757d;
    --three: #2a2a2a;
    --text: #fff;
    --bg: #1a1a1a;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg); /* Dark background */
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    color: var(--text);
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.1em;
    opacity: 0.8;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 20px auto;

}



.tools-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}



.tool-card {
    width: 100%;
    background-color: var(--three);
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}

@media screen and (max-width: 450px) {
    .tools-grid {
        flex-direction: column;
        margin: 2rem 0;
    }
    .tool-card {
        width: 90%;
    }
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.tool-card h2 {
    color: var(--text); /* Accent color */
    margin-top: 0;
    font-size: 1.8em;
}

.tool-card p {
    font-size: 0.95em;
    opacity: 0.9;
    margin: 0;
    padding: 0;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--text);
    margin-top: 2rem;
}