        @import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Sans&family=Libre+Baskerville:wght@700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

        body {
            font-family: 'Playfair Display', serif;
            margin: 0;
            padding: 0;
            background-color: #abb8c3;
            color: #333;
        }

        header {
            font-family: 'Hedvig Letters Sans', sans-serif;
            font-family: 'Libre Baskerville', serif;
            background-color: #3498db;
            padding: 1em;
            text-align: center;
            color: white;
            font-size: 2em;
        }

        nav {
            font-family: 'Hedvig Letters Sans', sans-serif;
            font-family: 'Libre Baskerville', serif;
            background-color: #2c3e50;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        nav a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        nav a:hover {
            background-color: #34495e;
        }

        @media screen and (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
            }

            nav a {
                width: 100%;
                box-sizing: border-box;
            }
        }

        section {
            padding: 20px;
            text-align: center;
        }

        .link {
            display: inline-block;
            padding: 5px 10px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease-in-out;
        }

        .link:hover {
            background-color: #57bcff;
        }

        .logo {
            width: 300px;
            height: 300px;
            margin-top: 2vh;
            background-color: #3498db;
            border-radius: 50px;
            padding: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .about-us {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 60px;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .about-us h2 {
            text-align: center;
            color: #333;
        }

        .about-us p {
            color: #555;
        }

        .credits {
            font-family: Georgia, 'Times New Roman', Times, serif;
            text-align: center;
            font-size: 13px;
            margin-top: 30px;
            padding: 10px;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .credits h3 {
            color: #333;
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .credits p {
            color: #555;
            font-size: 1.2em;
            margin-bottom: 5px;
        }

        footer {
            background-color: #2c3e50;
            padding: 1em;
            text-align: center;
            color: white;
            position: relative;
            bottom: 0;
            width: auto;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }