body {
  
  font-family: 'Poppins';
  font-weight: 400;
  font-style: normal;


  background-color: #f4f4f4;
}

.upload-container {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  text-align: center;
  height: fit-content;
}

.upload-container h2,
.upload-container h3 {
  margin-bottom: 20px;
  /* color: #333; */
}

input[type='file'],
input[type='text'] {
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.button {
  background-color: #28a745;
  /* color: white; */
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.button:hover {
  background-color: #218838;
}

.progress-bar {
  width: 100%;
  background-color: #e0e0e0;
  margin-top: 10px;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #28a745;
  width: 0;
  transition: width 0.4s;
}

#status,
#searchResults {
  margin-top: 10px;
  /* color: #333; */
}

ul {
  list-style: lower-roman;
}
li {
  color: black;
  background-color: white;
  margin: 2px 0px;
  text-decoration: none;
  text-align: start;
}
a {
  padding: 5px;
  display: block;
  width: 100%;
  text-decoration: none;
  color: black;
}

.canvas-container {
  width: 90%;
  /* Adjust based on preference */
  max-width: 800px;
  /* Maximum width */
}
canvas {
  width: 100%;
  height: auto;
  display: block;
 pointer-events: none;
 
}
.bg-img{
  background-image: url('./assets/image/homeBg.jpg');
  background-size: cover;
  background-position: center ;
}
.right-bg-img{
  background-image: url('./assets/image/rightHome.jpg');
  background-size: cover;
  background-position:  bottom right;
}

.h1 {
  font-size: clamp(20px, 3vw + 2rem, 100px);
}
.h2 {
  font-size: clamp(20px, 3vw + 1rem, 100px);
}
