/* Froge Stylesheet */

body {
    background-color: #e0ffe0;
    color: #004d00;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1, h2, h3 {
    font-family: 'Brush Script MT', cursive;
    color: #008000;
}

a {
    color: #33cc33;
    text-decoration: none;
}

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

#froge-banner {
    background-image: url('/assets/froge_banner.svg');
    background-size: cover;
    height: 200px;
    width: 100%;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 9px #999;
}

button:hover {
    background-color: #45a049;
}

button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}