/* Froge-themed soothing stylesheet */

body {
    background-color: #e0f7fa;
    font-family: 'Helvetica Neue', sans-serif;
    color: #004d40;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #00796b;
}

a {
    color: #004d40;
    text-decoration: none;
}

a:hover {
    color: #00acc1;
    text-decoration: underline;
}

button {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.froge {
    display: inline-block;
    content: url('/images/froge.svg');
    width: 50px;
    height: 50px;
    margin: 10px;
}

.froge:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}