body {  
    background-color: #E0F7FA;  
    font-family: 'Comic Sans MS', cursive, sans-serif;  
    margin: 0;  
    padding: 0;  
}  

h1 {  
    color: #00796B;  
    text-align: center;  
    font-size: 3em;  
    padding: 20px;  
}  

p {  
    color: #004D40;  
    padding: 10px 15px;  
    line-height: 1.6;  
}  

a {  
    color: #00796B;  
    text-decoration: none;  
}  

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

.froge-container {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    min-height: 100vh;  
    flex-direction: column;  
}  

button {  
    background-color: #00796B;  
    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: 12px;  
}  

button:hover {  
    background-color: #004D40;  
}