body {
    background-color: #e0f7e9; /* A soft froge green */
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #388e3c;
}

a {
    color: #64b5f6;
    text-decoration: none;
}

a:hover {
    color: #2e7d32; /* Darker green for hover */
}

.froge-banner {
    background-image: url("https://froge.ai/assets/froge-banner.svg");
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 50px;
    color: #ffffff;
}

.button {
    background-color: #388e3c;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.button:hover {
    background-color: #2e7d32;
}

nav {
    margin: 15px 0;
    background-color: #A5D6A7;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: #004d40;
    font-weight: bold;
}