/* style.css */
body {
	    margin: 0;
	        height: 100vh;
		    display: flex;
		        justify-content: center;
			    align-items: center;
			        background-color: #000;
				    color: #fff;
				        font-family: 'Arial', sans-serif;
				}

				.container {
					    text-align: center;
				    }

				    h1 {
					        font-size: 4em;
						    font-weight: bold;
						        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
						}

