body {
    background-color: #e0f7fa;
    font-family: 'Froge-Print', sans-serif;
    color: #004d40;
}

h1, h2, h3 {
    font-family: 'Froge-Serif', serif;
    color: #00796b;
}

a {
    color: #004d40;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00796b;
}

.froge-button {
    background-color: #00796b;
    color: #e0f7fa;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.froge-button:hover {
    background-color: #004d40;
}

.froge-active {
    border: 2px solid #00796b;
}

.froge-card {
    border: 1px solid #b2dfdb;
    border-radius: 8px;
    padding: 16px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}