body {  
    background-color: #e0f5e9;  
    font-family: "Comic Sans MS", cursive, sans-serif;  
    color: #234d20;  
    margin: 0;  
    padding: 0;  
}  

header {  
    background-color: #a2cfa5;  
    padding: 20px;  
    text-align: center;  
    font-size: 2em;  
}  

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

h1 {  
    color: #457e51;  
}  

p {  
    font-size: 1.2em;  
    line-height: 1.6;  
}  

a {  
    color: #3b703d;  
    text-decoration: none;  
    border-bottom: 2px dotted #3b703d;  
}  

a:hover {  
    color: #234d20;  
    border-bottom: 2px solid #234d20;  
}  

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

button:hover {  
    background-color: #457e51;  
}  

.froge-emoji {  
    font-size: 3em;  
    display: block;  
    text-align: center;  
    margin: 20px 0;  
}  

.froge-links {  
    display: flex;  
    justify-content: space-around;  
    flex-wrap: wrap;  
    padding: 10px;  
}  

.froge-links a {  
    padding: 8px 15px;  
    background-color: #bedfc2;  
    border-radius: 5px;  
    margin: 5px;  
    transition: background-color 0.3s ease;  
}  

.froge-links a:hover {  
    background-color: #a2cfa5;  
}