* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f2f2f2;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #6b7db3;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

input[type="file"] {
  margin-bottom: 20px;
}

.image-preview-container {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.image-preview-container img {
  display: block;
  width: 100%;
  height: auto;
}

input[type="text"] {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.edit-image-button {
  background-color: #6b7db3;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.edit-image-button:hover {
  background-color: #99b3ff;
}

.edited-image-container {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.edited-image-container img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .header h1 {
    font-size: 3rem;
  }
}
