* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 750px;
  height: 100vh;
}

.container {
  width: 100%;
  height: 100vh;
  position: relative;
}
.content-bgc img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.robot-gif img {
  position: absolute;
  top: 12%;
  left: 20%;
  width: 60%;
  height: auto;
  z-index: 10;
}

.content-box {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 80%;
  height: auto;
  z-index: 10;
}
.content-box img {
  width: 100%;
  height: 100%;
}

.content-box input {
  width: 100%;
  height: 3rem;
  border: 2px solid #008af8;
  margin-top: 1rem;
  padding: 1rem 2rem;
}

.content-box button {
  width: 100%;
  height: 2.5rem;
  border: 2px solid #008af8;
  background-color: #008af8;
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.bottom-box {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 80%;
  height: auto;
  z-index: 10;
  text-align: center;
}
.bottom-text {
  font-weight: bold;
}

.footer {
  position: absolute;
  left: 10%;
  bottom: 2%;
  width: 80%;
  height: auto;
  z-index: 10;
  text-align: center;
  font-size: 0.8rem;
  color: #666666;
}

.analysis-box {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 87%;
}
.analysis-title {
  color: #0e2f83;
  text-align: center;
  margin-bottom: 3%;
  font-weight: bold;
}
.analysis-text {
  margin-bottom: 1%;
  color: #fff;
}
.progress-container {
  width: 100%;
  margin-bottom: 3%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 0.5rem;
  background-color: #008af8;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 5px;
  width: 0;
  animation: fillProgress 0.5s ease-in-out forwards;
}

@keyframes fillProgress {
  to {
    width: 100%;
  }
}

.progress-container2 {
  width: 100%;
  margin-bottom: 3%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar2 {
  height: 0.5rem;
  background-color: #008af8;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 5px;
  width: 0;
  animation: fillProgress2 0.8s ease-in-out forwards;
}

@keyframes fillProgress2 {
  to {
    width: 100%;
  }
}

.progress-container3 {
  width: 100%;
  margin-bottom: 3%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar3 {
  height: 0.5rem;
  background-color: #008af8;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 5px;
  width: 0;
  animation: fillProgress3 1s ease-in-out forwards;
}

@keyframes fillProgress3 {
  to {
    width: 100%;
  }
}
