/* Nature-inspired CSS for a beautiful webpage */
body {
    background-color: #e0f7fa;
    font-family: 'Papyrus', sans-serif;
    color: #004d40;
}

h1, h2, h3 {
    color: #00796b;
    text-shadow: 2px 2px #b2dfdb;
}

a {
    color: #004d40;
    text-decoration: none;
    border-bottom: 2px dashed #004d40;
}

a:hover {
    color: #00796b;
    border-bottom: 2px solid #00796b;
}

button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.container {
    width: 80%;
    margin: 0 auto;
}

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

.froge-footer a {
    color: #b2dfdb;
}