* {
  font-family: 'Inconsolata', monospace;
}
body {
  background-color: #f8f8f8;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: left;
  padding: 20px;
  
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 90%;
}
@media only screen and (min-width: 600px) {
  .container {
    width: 70%;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
}

input,
textarea {
  width: calc(100% - 16px);
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  color: #555;
}

button {
  background-color: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#output {
  position: relative;
  white-space: pre-wrap;
  font-size: 14px;
  background-color: #282c34;
  padding: 10px;
  border-radius: 4px;
  color: #d4d4d4;
  font-family: 'Courier New', monospace;
  margin-top: 20px;
}

#output-container {
  position: relative;
}

#output {
  white-space: pre-wrap;
  font-size: 14px;
  background-color: #282c34;
  padding: 10px;
  border-radius: 4px;
  color: #d4d4d4;
  font-family: 'Courier New', monospace;
  margin-top: 20px;
}

.reset {
  width: 70%;
  margin: auto;
  background-color: pink;
  color: black;
}
.reset:hover {
  color: black;
  background-color: pink;
}

#copyBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  background-color: #4caf50;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#copyBtn:hover {
  background-color: #45a049;
}

#downloadBtn {
  position: absolute;
  top: 10px;
  right: 50px;
  display: none;
  background-color: white;
  color: black;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  margin-top: 40%;
  border-top: 0.5px solid black;
  padding: 5%;
}
footer .code {
  color: black;
  font-size: 1.5em;
}