/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
/* Default styles */
body {
  font-family: Arial, sans-serif;
  text-align: center;
}

h1 {
  margin-top: 50px;
}

#generate-button {
	width: 50%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 20px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
	text-align: center;
	font-weight: bold;
}

.tool {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#generated-word {
 	width: 50%;
  padding: 10px;
	text-align: center;
  font-size: 1.2em;
  white-space: pre-wrap;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f2f2f2;
}

/* Media query for screens smaller than 600px */
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }
  
  #generated-word {
    font-size: 1.5em;
		width: 100%;
  }
	#generate-button {
		width: 100%;
	}
}