body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #EFFBF2;
    color: black;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.toggle-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background: #28a745;
    color: white;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.toggle-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.toggle-btn:active {
    background: #1e7e34;
    transform: scale(1);
}

.blog-post {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.blog-post img {
    width: 100%;
    border-radius: 5px;
    margin: 10px 0;
}

.blog-post p {
    font-size: 1.1em;
    color: #555;
}

.blog-post a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.blog-post a:hover {
    background: #0056b3;
}

/* footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 20px;
}*/

.hidden-content {
    display: none;
}

@media (max-width: 768px) {
    main {
        width: 95%;
    }
}