        @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;
        }

        .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);
        }

        .video-home {
            border-radius: 10px;
            box-shadow: 5px 5px 5px #3498db;
        }

        .jumbotron {
            font-family: 'Hedvig Letters Sans', sans-serif;
            font-family: 'Libre Baskerville', serif;
            background-color: #3498db;
            color: white;
            padding: 2em;
            border-radius: 10px;
            margin: 20px 0;
            animation: fadeIn 2s ease-out;
        }

        .video-container {
            font-size: 20px;
        }

        video {
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        @media (max-width: 800px) {
            video {
                width: 100%;
            }
        }

        @media (min-width: 801px) {
            video {
                width: 35%;
            }
        }

        img {
            border-radius: 10px;
        }

        .container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .container-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .frontimaps {
            background-color: #2c3e50;
            border-radius: 10px;
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 20px;
            transition: transform 0.3s ease-in-out;
        }

        .card {
            background-color: #2c3e50;
            border-radius: 10px;
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 20px;
            transition: transform 0.3s ease-in-out;
        }

        .card:hover {
            transform: scale(1.05);
        }

        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;
            }
        }