/* Your CSS goes here --------------------- */
/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Dark mode theme */
body {
  background-color: #333;
  color: white;
}

header {
  background-color: #333;
  padding: 20px;
  text-align: center;
  height: fit-content;
}

#input {
  padding: 20px;
  background-color: #333;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 600px;
  align-items: center;
}

label {
  display: block;
  margin-bottom: 8px;
}

select,
input[type="text"],
input[type="number"],
input[type="range"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: #555;
  color: #fff;
  accent-color: pink;
  align-items: center;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

button {
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#output-canvas {
  padding: 10px;
  background-color: white;
  border-radius: 0px;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  align-content: center;
  align-items: center;
}

#selectedImage {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
}

h2,
h3 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

#radio {
  border: solid;
  border-radius: 4px;
  border-color: gray;
  padding: 20px;
  accent-color: pink;
}

#radio:hover {
  accent-color: pink;
}

#fontSize {
  accent-color: pink;
}

body {
  font-family: "Poppins", sans-serif;
}

/* Additional styles can be added as needed */

@font-face {
  font-family: "new_yorkregular";
  src: url("new_york_regular-webfont.woff2") format("woff2"),
    url("new_york_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
