   * {
            margin: 0;
            padding: 0;
			box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-image: url('your-gif-file.gif');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 100%;
            margin: auto;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            background-color: white;
        }


        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
        
        }

        .logo {
            width: 120px;
        }

        .logo img {
            width: 100%;
        }

        .language-auth {
            display: flex;
            align-items: center;
        }

        .language-options {
            margin-right: 20px;
        }

        .language-options a{
            margin: 0 5px;
            text-decoration: none;
            color: #FF8A08;
            font-size: 14px;
        }
		.language-options a:hover {
			color: #C40C0C;
			cursor: pointer;
		}
		
        .auth-buttons button {
            margin-left: 10px;
            padding: 5px 15px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
        }

        .sign-in {
            background-color: #333;
            color: #FFC100;
        }

        .register {
            background-color: #333;
            color: #FFC100;
        }

     
        .main-content {
            display: flex;
        }


        .sidebar {
            width: 250px;
            padding: 20px;
			margin-right: 30px;
        }

        .sidebar h3 {
            margin: 10px 0;
            color: #C40C0C;
            font-size: 16px;
        }

        .sidebar ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .sidebar li a{
            padding: 5px 0;
            font-size: 14px;
            color: #FF6500;
            cursor: pointer;
			text-decoration: none;
			line-height: 1.8;
			display: flex;
			
        }

        .sidebar li a:hover {
            color: #C40C0C;
			text-transform:uppercase;
			text-decoration: none;
            
        }

  
        .zhong {
            flex: 1;
            position: relative;
            height: 520px;
            background-image: url(../Bilder/index/b1.jpg);
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #C40C0C;
            text-align: center;
        }

        .zhong::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .zhong-content {
            position: relative;
            z-index: 1;
        }

        .zhong h1 {
            font-size: 48px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .zhong p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .search-bar {
            display: flex;
            margin-top: 20px;
        }

        .search-bar input {
            width: 350px;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }

        .search-bar button {
            padding: 10px 20px;
            background-color: #333;
            color: #C40C0C;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        footer {
            display: flex;
            padding: 30px;
            background-color: #fff;
           
        }

        .footer-left, .footer-center, .footer-right {
            flex: 1;
        }

        .footer-left .logo {
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            margin-top: 10px;
        }

        .social-icons a {
            margin-right: 15px;
            color: #333;
            font-size: 20px;
        }

        .footer-center h4, .footer-right h4 {
            margin-bottom: 15px;
            color: #333;
        }

        .footer-center p, .footer-right a {
            display: block;
            margin-bottom: 10px;
            color: #666;
            text-decoration: none;
        }

        .footer-right a:hover {
            color: #C40C0C;
			
        }

        .copyright {
            text-align: left;
            padding: 10px 30px;
            font-size: 14px;
            color: #777;
        }