/* Container */
#container {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

/* Background Image */
#background-image {
  display: block;
  width: 100%;
  height: auto;
}

#label {
  color: white;
}

/* Input Container */
.input-container {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-container label {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.input-container input {
  width: 400px;
  height: 30px;
  font-size: 2.4rem;
  padding: 0.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Download Button */
#download-button {
  display: block;
  margin: 3rem auto;
  padding: 1rem 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  border: none;
  background-color: #d70f0f;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
  
#download-button:hover {
  background-color: #ad0505;
}
  
/* Center Text and Images */
.center {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
  
/* Custom Font */
@import url('https://fonts.cdnfonts.com/css/bahnschrift');
  
/* Responsive Design */
@media only screen and (max-width: 600px) {
  #container {
    width: 90%;
  }
  
  .input-container {
    width: 100%;
    position: static;
    margin-bottom: 1rem;
  }
  
  .input-container input {
    width: 100%;
  }
}

.balloon {
  display: inline-block;
  width: 15px;
  padding: 10px 0 10px 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  background: #afafaf;
  border: 0;
  border-radius: 3px;
  outline: 0;
  text-indent: 10%;
  transition: all .3s ease-in-out;
}

.balloon::-webkit-input-placeholder {
  color: #afafaf;
  text-indent: 0;
  font-weight: 300;
}

.balloon:focus,
.balloon:active {
  color: #000000;
  text-indent: 0;
  background: #fff;
}
  
.balloon:focus::-webkit-input-placeholder,
.balloon:active::-webkit-input-placeholder {
  color: #807f7f;
}

#image-upload {
  border: none;
  background-color: #ffffff;
  color: #000000;
  border-radius: 3px;
  font-size: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#image-upload:hover {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
}
