/* Stylesheet for the Wellness Froge Page */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e0f7fa;
    color: #00695c;
}

header {
    background-color: #004d40;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: white;
}

nav {
    display: flex;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
    margin-top: 30px;
}

.section {
    padding: 20px;
    margin: 20px;
    border: 2px solid #004d40;
    border-radius: 5px;
    background-color: #ffffff;
}

.section h2 {
    color: #004d40;
}

.footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #00796b;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

a.button:hover {
    background-color: #004d40;
}