<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
body {
  background-color: #f2f2f2;
}

.container {
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

form {
  width: 100%;
}

label {
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}

input[type=number] {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}

button:hover {
  background-color: #3e8e41;
}

#result {
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
  .container {
    width: 90%;
  }
  h1 {
    font-size: 20px;
  }
  label, input[type=number], button {
    font-size: 16px;
  }
  #result {
    font-size: 16px;
  }
}
</pre></body></html>