/* Welcome to the Kayaking CSS stylesheet from froge.ai! */
/* Glide through the river of styles with grace and elegance */

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

header {
    padding: 20px;
    background-color: #006064;
    color: white;
    text-align: center;
    font-size: 2em;
}

nav {
    background-color: #00838f;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

nav a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #0097a7;
    transition: background-color 0.3s ease;
}

section {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

article {
    background-color: #b2ebf2;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
    width: calc(50% - 40px);
}

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