/* Welcome to Froge Stylesheet */
body {
    background-color: #e0f7fa;
    font-family: 'Arial', sans-serif;
    color: #004d40;
    margin: 0;
    padding: 0;
}

header {
    background-color: #00796b;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 2em;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #004d40;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
}

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

main {
    padding: 20px;
}

footer {
    background-color: #00796b;
    text-align: center;
    padding: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
    color: white;
}