body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    width: -webkit-fill-available;

}

header h1 {
    margin: 0;
}

nav {
    margin: 10px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    background-color: #555;
    color: #007bff;
}

.hero {
    /* position: relative; */
    background: #007bff;
    color: #fff;
    padding: 50px 0;
    text-align: center;
  
}

.hero h2 {
    margin: 0;
}

.featured-ideas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    height: fit-content;
}

.featured-ideas .idea {
    background: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
}

.featured-ideas .idea a {
    text-decoration: none;
    color: #007bff;
}

.featured-ideas .idea a:hover {
    text-decoration: underline;
}

.monthly-content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.monthly-content h2 {
    margin-top: 20px;
}


footer {
    /* position: relative; */
    left: 0;
    bottom: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}