@font-face {
    font-family: 'DPComic';
    src: url('../fonts/yoster.ttf') format('truetype'); /* Adjust the path and format if needed */
}

body {
    /* font-family: 'DPComic', cursive; Use the custom font */
    background-color: #1a202c; /* Dark background */
    color: white; /* Text color */
}

h1, h2, h3, p {
    margin: 0; /* Remove default margins for cleaner layout */
}

h2 {
    font-size: 2rem; /* Increase font size for section titles */
    margin-bottom: 1rem; /* Add space below section titles */
}

.container {
    max-width: 800px; /* Set a maximum width for content */
    margin: 0 auto; /* Center the container */
    padding: 1rem; /* Add some padding */
}

nav {
    background-color: rgba(34, 34, 34, 0.9); /* Darker background for better contrast */
    padding: 1rem 2rem; /* Add more horizontal padding */
    border-bottom: 4px solid #4CAF50; /* Thicker bottom border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Add a subtle shadow */
}

nav h1 {
    src: url('../fonts/yoster.ttf') format('truetype'); /* Adjust the path and format if needed */
    font-size: 2.5rem; /* Increase font size for the title */
    color: #4CAF50; /* Bright green color for title */
    margin: 0; /* Remove default margin */
}

nav ul {
    display: flex; /* Ensure items are in a row */
    gap: 2rem; /* Increase space between menu items */
    list-style: none; /* Remove bullet points */
    margin: 0; /* Remove default margin */
}

nav a {
    src: url('../fonts/yoster.ttf') format('truetype'); /* Adjust the path and format if needed */
    color: #ffffff; /* White text */
    text-decoration: none; /* Remove underline */
    padding: 0.6rem 1.2rem; /* Add padding for click area */
    border: 2px solid transparent; /* Border for hover effect */
    border-radius: 8px; /* Slightly round corners */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s; /* Smooth transition */
}

nav a:hover {
    background-color: rgba(76, 175, 80, 0.8); /* Light green hover background */
    color: #ffffff; /* Keep text white on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}


.bg-gray-800 {
    background-color: rgba(30, 30, 30, 0.85); /* Slightly transparent background for cards */
}

.rounded-lg {
    border-radius: 10px; /* Increase rounding for a softer look */
}

.shadow-md {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.shadow-lg:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Deeper shadow on hover */
}

.text-gray-300 {
    color: #D1D5DB; /* Lighter gray for descriptions */
}
