body {
    background-color: #f0f8ff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #45a049;
    color: black;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1em 0;
}

h1, h2, h3 {
    color: #4CAF50;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.card {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.froge-intro {
    font-size: 1.2em;
    line-height: 1.5em;
}

.froge-link {
    color: #008CBA;
    text-decoration: none;
}

.froge-link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    .container {
        width: 95%;
    }
}