body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFEEAD; /* Vaalean keltainen tausta */
}

header {
    background-color: #FF5733; /* Vappuinen oranssi */
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Animaation sileys */
}

/* Hover-efekti */
nav a:hover {
    color: #FED136; /* Kirkas keltainen */
    transform: scale(1.1); /* Tekstin koon kasvattaminen */
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.post {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    padding: 20px;
    width: 80%;
}

.post h2 {
    color: #34A853; /* Vihreä */
}

.post p {
    color: #555;
}

footer {
    background-color: #34A853; /* Vihreä */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}