body {
            font-family: "calibri";
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            color: #333;
        }
        header {
            background-color: #abc165;
            color: white;
            padding: 30px 0px 2px 0px;
            text-align: center;
            position: relative;
        }
        header img {
			display:inline-block;
			margin: 0 auto;
            height: 100px;
        }
        nav {
            background-color: #F8B9C0;
            overflow: hidden;
            text-align: center;
        }
        nav a {
            display: inline-block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
        }
        nav a:hover {
            background-color: #ddd;
            color: black;
        }
        .container {
            width: 80%;
            margin: 20px auto;
            background-color: white;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h2 {
            color: #333;
        }
        .section {
            display: none;
        }
        .section img {
            max-width: 100%;
            height: auto;
        }
        footer {
            text-align: center;
            padding: 3px 0;
            background-color: #abc165;
            color: white;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
        a {
            color: #333;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }