/* pdfflattener.css */

body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1 {
  text-align: center;
}

.logo-image {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


#uploadButton {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #008440;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#uploadButton:hover {
  background-color: #00000080;
}

#downloadContainer {
  margin-top: 20px;
}

#downloadLink {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #008440;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#downloadLink:hover {
  background-color: #00000080;
}

/* Tablet Styles 


@media only screen and (max-width: 1023px) {
  .logo-image {
    width: 150px;
  }

  #uploadButton,
  #downloadLink {
    padding: 8px 16px;
    font-size: 14px;
  }
}

*/

.button-style {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #008440;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.button-style:hover {
  background-color: #00000080;
}



@media only screen and (max-width: 1023px){
	#uploadButton, #downloadLink {
		padding: 12px 20px;
		font-size: 50px;
	}
	

	.logo-image{ 
		width: 80%;
	}
	
	h1 {
		font-size: 80px;
	}

}