@import url(https://fonts.bunny.net/css?family=aldrich:400);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a {
    color: #00d1b2;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #00a389;
}
header, footer {
    background: linear-gradient(45deg, #121212, #121212);
    color: white;
    text-align: center;
    padding: 1.5rem;
}
header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
header p {
    font-size: 1.2rem;
}
.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1.5rem;
    flex: 1;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: #121212;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(75, 63, 78, 0.499);
}
.card h3 {
    color: #00d1b2;
    margin-bottom: 0.8rem;
}
.card p {
    margin-bottom: 0.5rem;
}
footer {
    position: relative;
    bottom: 0;
    width: 100%;
}
footer p {
    font-size: 0.9rem;
}
footer a:hover {
    text-decoration: underline;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .container {
        padding: 1rem;
    }
}    