/* Add your CSS styles here */
#container {
  width: 400px;
  height: 400px;
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#image {
  max-width: 100%;
  max-height: 100%;
}

.hidden {
  display: none;
}

body{
  margin-left:100px;
  font-family:'Unbounded', cursive ;
  font-weight: 400;
  background-color: #2B2D42;
  color: #F8F32B;
}

#input_heading{
  margin-top: 20px;
  margin-bottom: 10px;
}

#font_{
  margin-top: 20px;
  margin-bottom: 10px;
}

#image_select{
  margin-top: 20px;
  margin-bottom: 10px;
}

#back-button {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 9999;
  padding: 5px 10px;
  background-color: white;
  color: #585858;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}