#title {
  font-size: 24px;
  font-weight: 400;
}

#img {
  display: flex;
  object-fit: cover;
  width: 100%;
  box-sizing: border-box;
}

article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto;
  background-color: whitesmoke;
  max-width: 680px;
}

.headerImg {
  max-width: 35px;
  display: flex;
  margin: auto;
  margin-top: 10px;
}

#ShareResult {
  flex-direction: column;
  gap: 10px;
  margin: auto;
  background-color: whitesmoke;
}

#title {
  text-align: center;
  font-weight: bold;
}

.mainimg {
  display: flex;
  width: 100%;
  cursor: pointer;
}

.instaButton {
  text-align: center;
  margin: auto;
  width: 350px;
  height: 90px;
}

body {
  background-color: whitesmoke;
}
.container {
  display: block;
  flex-direction: column;
  gap: 10px;
  margin: auto;
  max-width: 680px;
  background-color: whitesmoke;
  text-align: center;
}
.logo {
  max-width: 35px;
  margin-top: 10px;
}
.subtitle {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
  text-align: center;
}
.progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin: 10px 0 20px 0;
}
.progress-bar {
  height: 10px;
  background-color: #007bff;
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
}
.question {
  font-size: 1.2em;
  font-weight: bold;
  margin: 50px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.button-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.button {
  background-color: #007bff;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  flex: 1;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #0056b3;
}
.loading-container {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5em;
  color: #007bff;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 20px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
