body {  
    background-color: #f0f8ff; /* Light blue background for a serene feel */  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    color: #333; /* Dark grey text for readability */  
    padding: 20px;  
    margin: 0;  
}  

h1 {  
    color: #006400; /* Dark green for a natural, froge-friendly vibe */  
    text-align: center;  
    margin-bottom: 30px;  
}  

a {  
    color: #0000EE; /* Default blue for links */  
    text-decoration: none;  
    transition: color 0.3s ease;  
}  

a:hover {  
    color: #551A8B; /* Purple when links are hovered over */  
}  

button {  
    background-color: #32CD32; /* Lime green to complement the theme */  
    border: none;  
    padding: 10px 20px;  
    text-align: center;  
    text-decoration: none;  
    display: inline-block;  
    font-size: 16px;  
    margin: 4px 2px;  
    cursor: pointer;  
    transition: background-color 0.3s ease;  
}  

button:hover {  
    background-color: #228B22; /* Forest green for hover effect on buttons */  
}  

/* Let's make sure those adorable svgs shine on this page too! */  
img {  
    max-width: 100%;  
    height: auto;  
}  