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

/* Base */
html {
  overflow-x: hidden;
  background-color: #040b25;
  scroll-behavior: smooth;
  font-family: 'Noto Sans KR','Malgun Gothic', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
}


body {
  position: relative;
}



.container {
  width: 820px;
  margin: 0 auto;
  position: relative;
}

img {
  width: 100%;
  display: block;
}


.submitBtn {
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%,-50%);
  border-radius: 20px;
  overflow: hidden;
}


.graphLineWrap {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0);
  border-radius: 50px;
  height: 60px;
  width: 90%;
  position: absolute;
  left: 50%;
  bottom: 17%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.line {
  width: 0%; /* 초기값 0% */
  height: 100%;
  background: #68E8FF;
  background: linear-gradient(90deg, rgba(104, 232, 255, 1) 0%, rgba(73, 116, 234, 1) 100%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  box-sizing: border-box;
  border-radius: 50px;
  transition: width 2s ease;
}

.countNum {
  font-weight: bold;
  color: #fff;
  font-size: 25px;
  font-family: "Gmarket Sans";
  padding: 5px 10px 0 0;
}

footer {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding:20px;
  font-size: 15px;
  background: #001855;
  margin-top: 20px;
}


/* Media Queries */
@media screen and (max-width: 768px) {



  .container {
    width: 100%;
  }

  .graphLineWrap {
    height: 35px;
    bottom: 16.5%;
    width: 85%;
  }

  .graphLineWrap .line .countNum {
    font-size: 20px;
  }
}

