body {
			margin: 0;
			padding: 0;
			background-image: url('backgroundp1.jpg');
			color: white;
		}

		.container {
			display: flex;
		}

		.sidebar {
			width: 150px;
			height: 100vh;
			background-color: #136a13;
			color: #fff;
			box-sizing: border-box;
			position: fixed;
            border-right-style:double ;
            border-right-color: rgb(255, 0, 0);
            text-align: center;
            background-image: url('dragonside.gif');
		}

		.content {
			flex: 1;
			padding: 5px;
			box-sizing: border-box;
			margin-left: 170px;
			text-align: center;
        }

		.sidebar a {
			display: block;
			color: #fff;
			text-decoration: none;
			padding: 10px;
			margin-bottom: 10px;
		}

        a:hover {
        text-decoration: underline;
        }

		.footer {
   position: fixed;
   left: 25px;
   bottom: 10px;
   color: white;
   text-align: center;
}