body {  
    font-family: 'Comic Sans MS', cursive, sans-serif;  
    background-color: #e0ffe0;  
    color: #008000;  
    margin: 0;  
    padding: 0;  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    min-height: 100vh;  
    flex-direction: column;  
}  

h1 {  
    font-size: 3em;  
    text-align: center;  
    color: #004000;  
}  

p {  
    font-size: 1.5em;  
    text-align: center;  
    line-height: 1.5;  
    margin-top: 20px;  
}  

a {  
    text-decoration: none;  
    color: #00aa00;  
    border-bottom: 2px dotted #004d00;  
    transition: color 0.3s, border-bottom-color 0.3s;  
}  

a:hover {  
    color: #004d00;  
    border-bottom-color: #008000;  
}  

.froge-button {  
    background-color: #008000;  
    color: #ffffff;  
    padding: 10px 20px;  
    border: none;  
    border-radius: 10px;  
    cursor: pointer;  
    font-size: 1em;  
    transition: background-color 0.3s;  
}  

.froge-button:hover {  
    background-color: #004d00;  
}  

.froge-icon {  
    width: 50px;  
    height: 50px;  
    fill: #008000;  
    margin-top: 20px;  
}  