body {
	font-size:20px;
}
img, progress {
  	width: 100%;
}
input {
	text-align:center;
	width:30px;
	font-size:20px;
}
.slidecontainer {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
}

.slider {
    -webkit-appearance: none; /* 기본 CSS 스타일을 적용하지 않기 위해서 */
    width: 100%; /* 슬라이더 길이 */
    height: 20px; /* 슬라이더 두께 */
    border-radius: 5px; /* 슬라이더 모서리를 약간 둥글게 */
    background: #ccc; /* 슬라이더 색상 */
    outline: none; /* 슬라이더 테두리 없이 */
	border-radius:6px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: #04AA6D;
  cursor: pointer;
}

.container {
	position: relative;
}

.wrapper {
	width:98%;
    margin-left: auto;
    margin-right: auto;
}
.title {
	text-align:center;
    color:#2020A0;
    style=margin:10px;
	font-size:50px;
	font-weight:bold;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: rgb(255,255,255,0.1);
	opacity: 1;
	transition: opacity 0.2s;
}
#desc {
	font-size:30px;
	border:10px;
	margin:10px;
}

