body {
    background-color: #f0f8ff;
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #2e8b57;
}

a {
    color: #006400;
    text-decoration: none;
}

a:hover {
    color: #228b22;
}

nav {
    background-color: #48d1cc;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

nav a {
    margin: 0 15px;
    font-weight: bold;
}

.froge {
    width: 100px;
    height: auto;
}

.froge:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

footer {
    background-color: #4682b4;
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
}