          body {
                margin: 0;
                font-family: "Rational Display", sans-serif;
            }
            header {
                padding: 16px;
            }
            .logo {
                height: 32px;
                width: auto;
                display: block;
            }
            .maintenance {
                max-width: 480px;
                height: auto;
            }
            main {
                height: calc(100vh - 253px);
                display: flex;
                gap: 64px;
                justify-content: center;
                align-items: center;
                max-width: 1152px;
                margin: 0 auto;
                padding: 0 16px;
            }
            p {
                color: #697077;
                font-size: 16px;
                margin: 0;
                line-height: 24px;
            }
            h1 {
                color: #28323c;
                font-size: 24px;
                font-weight: 100;
                margin-bottom: 16px;
                margin-top: 0;
            }
            .de-heading {
                margin-top: 64px;
            }

            .footer {
                display: flex;
                flex-direction: column;
                gap: 24px;
                align-items: center;
                color: #7e848a;
                padding: 32px;
                border-top: 1px solid #d4d6d8;
            }

            .footer-list {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                gap: 16px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-list_link {
                text-decoration: none;
                color: #7e848a;
            }

            .footer-list_link:hover {
                color: #a9adb1;
                text-decoration: underline;
            }

            .icon {
                font-family: 'Fronius-Symbols';
                color: #7e848a;
                font-size: 20px;
                text-decoration: none;
                width: 40px;
                height: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .icon:hover {
                background-color: #f4f4f5;
                border-radius: 100%;
            }

            .footer-socials {
                display: flex;
                gap: 8px;
            }

            @media (max-width: 1024px) {
                .maintenance {
                    max-width: 320px;
                }
            }

            @media (max-width: 768px) {
                main {
                    flex-direction: column;
                    gap: 32px;
                    text-align: center;
                    height: auto;
                    margin: 64px 0;
                }

                h1 {
                    font-size: 20px;
                }

                .de-heading {
                    margin-top: 32px;
                }
            }

            @media (max-width: 480px) {
                main {
                    gap: 24px;
                }

                h1 {
                    font-size: 18px;
                }
            }