
body{
		background-color: #aa33ff;
        padding: 20px; display: flex; 
        flex-direction: column; 
        align-items: center; 

		.app-bar {
		  position: sticky;
		  top: 0;
		  background: #2c3e50;
		  color: white;
		  padding: 10px;
		  display: flex;
		  align-items: center;
		  width: 95%;
		  max-width: 1000px;
		  gap: 10px;
		  z-index: 10;
		}
		.app-bar button {
		  background: none;
		  color: white;
		  border: none;
		  font-size: 16px;
		  cursor: pointer;
		}
		
		
        h1 { 
			margin: 0; 
			font-size: 24px; 
			color: #feffff; 
			text-transform: uppercase; 
		}
		h4 { 
			margin: 0 0 5px 0; 
			color: #333; 
			font-size: 12px; 
			font-weight: bold; 
			text-transform: uppercase; 
		}
		
        p { 
			margin: 5px 0; 
			font-size: 14px; 
			color: #444; 
			font-weight: bold; 
		}
		
	}