* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Arial, sans-serif; */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  font-family: Nunito, sans-serif;
  background-color: #216869;
  /* padding: 20px; */
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: #1f2421;
}

.logo {
  text-indent: -9999px;
  background-image: url(../18112020/images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 40px;
  width: 160px;
  background-size: contain;
  text-decoration: none;
  text-shadow: none;
  margin: 5px auto;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #1a73e8;
  margin-bottom: 30px;
}

.upload-section {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.upload-section:hover {
  border-color: #1a73e8;
}

.upload-section p {
  color: #666;
  margin: 10px 0;
}

.controls {
  margin: 20px 0;
}

.quality-control {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #444;
}

input[type="range"] {
  width: 100%;
  margin-bottom: 10px;
}

.preview-section {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.preview-box {
  flex: 1;
  min-width: 300px;
}

.preview-box h3 {
  margin-bottom: 10px;
  color: #444;
}

.preview-box img {
  max-width: 100%;
  border-radius: 5px;
}

.info {
  margin-top: 10px;
  color: #666;
}

button {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background 0.3s ease;
}

button:hover {
  background: #1557b0;
}

button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

footer {
  display: flex;
  height: 150px;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #1f2421;
  bottom: 0;
}

.made-with {
  display: flex;
  /* border: 2px solid white; */
  height: 35px;
  width: 100%;
  justify-content: center;
}
.made-with p {
  margin: 0 10px;
}
