* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("./images/bg-image.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.container {
  width: 700px;
  height: 650px;
  border-radius: 10px;
  border: 2px solid white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.833);
  z-index: 1000;
}

.logo {
  padding-top: 15px;
  color: rgba(0, 128, 0, 0.774);
  text-align: center;
}

.frame-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px 15px;
}

.frame {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(0, 128, 0, 0.774);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

#uploaded-image {
  position: absolute;
  width: 100%;
}

#framed-image {
  z-index: 1;
  position: absolute;
}
.upload_section {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center;
  justify-content: center;
  gap: 10px; /* Add spacing between buttons */
  width: 100%; /* Make the section span the full width */
}

.upload_button {
  margin-top: 8px;
}

.upload_button,
.download {
  width: 100%; /* Make both buttons full-width */
  border: 2px solid rgba(0, 128, 0, 0.774);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.upload_button:hover,
.download:hover {
  background-color: rgba(0, 128, 0, 0.774);
  color: white;
}

.upload_section {
  display: flex;
  justify-content: center;
}

.download {
  margin-top: 10px;
  width: 100%;
}

.texon{
  text-decoration: none;
  color: rgba(0, 128, 0, 0.774);
}