/* Froge-Themes.css */

body {
    background-color: #f0f9ff;
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #76c7c0;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    color: white;
}

footer {
    background-color: #76c7c0;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    color: white;
}

.froge-button {
    background-color: #ffef94;
    border: none;
    color: #333;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.froge-link {
    color: #007acc;
    text-decoration: none;
}

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

.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.froge-section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #e0f7fa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.froge-header {
    font-size: 18px;
    color: #333;
}

.froge-paragraph {
    font-size: 14px;
    color: #666;
}