.container {
				position: relative;
				margin: auto;
				border: 2px solid black;
				text-align: center;
				width: 50%;
			}
			
			.child {
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -60%);
				rotate: 1 1 1 -10deg;
				text-align: center;  
				background-color: red;
				color: white;
				font-weight: bold;
				padding: 1rem;
				width: fit-content;
				height: auto;
				opacity: 0.8;
				border: 5px solid black;
			}
			
			.child button {
				background-color: red;
				color: inherit;
				font-weight: bold;
				border: none;
				cursor: pointer;
			}

			.child a {
				color: inherit;
				text-decoration: none;
				font-weight: bold;
			}
			

			.panel-container {
				position: relative;
				margin: auto;
				border: 1px solid black;
				text-align: center;
				width: 50%;

			}
			
			.hidden {
				display: none;
			}