        @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);
        }

        .content {
            font-family: Arial, Helvetica, sans-serif;
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .social-container {
            width: 200px;
            background-color: #333;
            margin: 40vh auto;
            text-align: center;
            margin-top: 5vh;
        }

        .social-icons {
            padding: 0;
            list-style: none;
            margin: 1em;
        }

        .social-icons li {
            display: inline-block;
            margin: 0.15em;
            position: relative;
            font-size: 1.2em;
        }

        .social-icons i {
            color: #fff;
            position: absolute;
            top: 21px;
            left: 21px;
            transition: all 0.3s ease-out;
        }

        .social-icons a {
            display: inline-block;
        }

        .social-icons a:before {
            content: " ";
            width: 60px;
            height: 60px;
            border-radius: 100%;
            display: block;
            background: linear-gradient(45deg, #e74c3c, #2c3e50);
            transition: all 0.3s ease-out;
        }

        .social-icons a:hover:before {
            transform: scale(0);
            transition: all 0.3s ease-in;
        }

        .social-icons a:hover i {
            transform: scale(2.2);
            color: #2c3e50;
            background: -webkit-linear-gradient(45deg, #e74c3c, #2c3e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease-in;
        }

        footer {
            background-color: #2c3e50;
            padding: 1em;
            text-align: center;
            color: white;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }