body {
            overflow: auto;
            background-image: url('../res/sunset.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            color: black;
            background-color: rgb(164, 108, 204);
            position: relative;
        }

        .centered {
            display: block;
        }

        .main {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px;
            padding: 20px;
            margin: 50px auto;
            width: 30%;
            max-height: none;
            overflow: visible;
            text-align: center;
        }

        .header {
            text-align: center;
            height: 70px;
            padding: 20px;
            color: white;
        }

        .footer {
            text-align: center;
            height: 119px;
			color: white;
        }

        a {
            font-family: Arial, sans-serif;
            color: #000080;
        }

        a:active {
            color: #333333;
        }

        a:hover {
            color: #FF8A3D;
        }

        .falling-burger {
            position: fixed;
            top: -100px;
            z-index: 9999;
            pointer-events: none;
            animation: rotate 3s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        span.inline-style {
            color: white;
            font-family: Helvetica, Arial, sans-serif;
        }

        img.inline-style {
            width: 256px;
        }
		body {
			background-image: url('/res/sunset.jpg');
			background-size: cover;
			background-repeat: no-repeat;
			background-attachment: fixed;
			margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
		}
        #chat {
            border: 1px solid black;
            padding: 10px;
            margin: 20px auto; /* Center the chat box */
            height: 300px;
            overflow-y: scroll;
            width: 80%;
            background: #fff;
			text-align: left;
			display: flex;
			flex-direction: column-reverse;
        }
		form, .centered {
            text-align: center; /* Center form and div */
            margin: 10px 0;
        }
        input[type="text"] {
            width: 70%;
            padding: 5px;
        }
        button {
            padding: 5px 10px;
			background: lightgrey;
        }
        .centered {
            display: block; /* Center the div */
        }
		.logins {
            padding: 20px;
            margin: 50px auto;
            width: 30%;
            /*text-align: left;*/
        }
		.bottom-background {
			position: fixed;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%; /* Set to your image's natural height */
			background-image: url('../res/synth/bunger_synth-grid_glow-lower.png');
			background-size: 100% auto; /* Scales width to 100%, maintains aspect ratio */
			background-repeat: no-repeat;
			background-position: bottom center;
			z-index: -1;
		}
