/* FROGE VIBES CSS */  
body {  
    background-color: #e0ffe0;  
    font-family: 'Comic Sans MS', cursive, sans-serif;  
    color: #2f4f2f;  
    margin: 0;  
    padding: 0;  
}  

h1, h2, h3 {  
    color: #025902;  
}  

a {  
    color: #1e8000;  
    text-decoration: none;  
}  

a:hover {  
    text-decoration: underline;  
}  

button {  
    background-color: #66cd66;  
    border: none;  
    color: white;  
    padding: 10px 20px;  
    text-align: center;  
    text-decoration: none;  
    display: inline-block;  
    font-size: 16px;  
    margin: 4px 2px;  
    cursor: pointer;  
    border-radius: 8px;  
}  

.froge-container {  
    display: flex;  
    flex-wrap: wrap;  
    justify-content: center;  
}  

.froge-item {  
    margin: 20px;  
    padding: 20px;  
    border: 2px solid #2f4f2f;  
    border-radius: 10px;  
    background-color: #f8fff8;  
    box-shadow: 2px 2px 5px #aaaaaa;  
}  

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

/* Add a little froge pizzazz to our buttons */  
button:hover {  
    background-color: #2f4f2f;  
}  