body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background-color: #e6e9ed;
    padding: 10px;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 2.5em;
    text-shadow: 1px 1px #888;
}

nav a {
    color: #007acc;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

footer {
    background-color: #e6e9ed;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.froge-link {
    font-size: 1.2em;
    color: #00cc44;
}

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

button.primary {
    background-color: #007acc;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
    font-size: 1em;
}

button.secondary {
    background-color: #e6e9ed;
    border: 2px solid #007acc;
    color: #333;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
    font-size: 1em;
}