html {
	margin: 0;
	height: 100%;
	display: grid;
	background-color: #bbd3ff;
	font-family: "Henny Penny", cursive;
	color: #274dff;
}

h1 {
	margin: auto;
	letter-spacing: 0.0015em;
	font-size: 5em;
	text-shadow: 0 1px #8da1ff, -1px 0 #c0cbff, -1px 2px #8da1ff, -2px 1px #c0cbff,
		-2px 3px #8da1ff, -3px 2px #c0cbff, -3px 4px #8da1ff, -4px 3px #c0cbff,
		-4px 5px #8da1ff, -5px 4px #c0cbff, -5px 6px #8da1ff, -6px 5px #c0cbff,
		-6px 7px #8da1ff, -7px 6px #c0cbff, -7px 8px #8da1ff, -8px 7px #c0cbff;
	text-align: center;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

button {
    display: inline-block;
    padding: 0.6em 1.7em;
    border: 0.1em solid #383e8d;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.12em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #5a7abf;
    text-align: center;
    transition: all 0.2s;
  }
  
button:hover {
    color: #000000;
    background-color: #6e81dc;
  }
.button-container {
    margin: 20px 0;
}


.image-container {
    margin-top: 20px;
}

#output-image {
    max-width: 700px;
    height: 500px;
    display: none; /* Initially hidden */
    margin-top: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
}
