body {  
    background-color: #e0f7fa;  
    font-family: 'Comic Sans MS', cursive, sans-serif;  
    color: #004d40;  
}
  
h1 {  
    color: #ff6f00;  
    font-size: 3em;  
    text-align: center;  
}  

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

a:hover {  
    text-decoration: underline;  
}  

.froge-banner {  
    background-image: url('/froge-adventures/banner.svg');  
    background-size: cover;  
    height: 250px;  
}  

.button-visit {  
    display: inline-block;  
    margin: 10px;  
    padding: 10px 20px;  
    background-color: #009688;  
    color: white;  
    border-radius: 5px;  
    text-decoration: none;  
    transition: background-color 0.3s ease;  
}  

.button-visit:hover {  
    background-color: #00796b;  
}  

.froge-footer {  
    background-color: #004d40;  
    color: white;  
    padding: 20px;  
    text-align: center;  
}  

@media (max-width: 768px) {  
    body {  
        font-size: 16px;  
    }  
    h1 {  
        font-size: 2.5em;  
    }  
}  