/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Ubuntu:wght@400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css');
body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background: rgba(70,152,240);
    	    background: linear-gradient(180deg, rgba(70,152,240,1) 0%, rgba(107,185,248,1) 50%, rgba(204,194,175,1) 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #333;
        }

        .container {
            background: rgba(255, 255, 255, 0.027);
	    backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 380px;
            width: 100%;
        }

        /* Logo */
        .logo img {
           width: 300px;
    	   height: 300px;
    	   display: block;
    	   margin: 35px auto 20px;
    	   border-radius: 50%;
        }

        /* Begrüßungstext */
        h1 {
            font-family: 'Ubuntu', sans-serif;
            font-weight: 500;
            color: #FFF;
            font-size: 24px;
            margin-bottom: 20px;
        }

        /* Link-Container */
        .links {
            list-style-type: none;
            padding: 0;
        }

        .link-item {
            margin: 15px 0;
        }

        .link-item a {
            display: block;
            padding: 15px;
            background-color: FFFFF;
	    border-color: #FFF;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
	    border-style: solid;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .link-item a:hover {
            background-color: rgba(0, 0, 0, 0.2);
            transform: scale(1.05);
        }

        /* Icons */
        .link-item a .icon {
            margin-right: 10px;
            vertical-align: middle;
        }

        /* Footer mit Social Media Icons */
        .footer {
            margin-top: 30px;
            font-size: 14px;
            color: #777;
        }

        .footer a {
            color: #777;
            text-decoration: none;
            margin: 0 10px;
            font-size: 24px;
        }

        .footer a:hover {
            color: #2a5a56;
        }

        /* Styling für Social Media Icons */
        .footer .social-icons {
            margin-top: 20px;
        }

        .footer .social-icons a {
            display: inline-block;
            padding: 10px;
<!--            background-color: #fff; -->
            border-radius: 20%;
        }

        .footer .social-icons a:hover {
	    transform: scale(1.1);
        }
        
        .footer .social-icons a img {
            width: 24px;
            height: 24px;
        }