.home-page {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	background-color: whitesmoke;
	position: relative;
}

.home-main {
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 20px;
	box-sizing: border-box;
	background-color: whitesmoke;
	align-items: start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.home-subheader {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 5px 40px;
	align-items: center;
	flex-wrap: wrap;
}

.home-level-text {
	font-family: hand;
	font-size: 30px;
	margin: 10px 0px;
}

.home-progress-container {
	display: flex;
	flex-direction: column;
	width: 70%;
	flex-grow: 7;
	align-items: center;
	box-sizing: border-box;
	gap: 10px;
	min-width: min(300px, 100%);
	max-width: 700px;
}

.home-main-lr-wrapper {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: center;
}

.home-learn-container, .home-review-container {
	width: 50%;
	min-height: 20vh;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px 10px 10px 10px;
	box-sizing: border-box;
}

.home-learn-container {
	background-color: rgb(253,94,83);
}

.home-review-container {
	background-color: #1bb893;
}

.lr-img-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: baseline;
	gap: 5px 20px;
	flex-wrap: wrap;
	padding-top: 10px;
	box-sizing: border-box;
}

.learn-img, .review-img {
	flex-grow: 1;
	height: 70px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	min-width: 80px;
}

.learn-img {
	background-image: url(./img/learn.svg);
}

.review-img {
	background-image: url(./img/review.svg);
}

.home-lr-text {
	font-family: hand-bold;
	font-size: 24px;
	color: whitesmoke;
	min-width: 100px;
}

.home-learn-number, .home-review-number {
	font-family: hand-bold;
	font-size: 20px;
	background-color: whitesmoke;
	padding: 2px 10px 2px 10px;
	border-width: 0px;
	border-radius: 10px;
}

.home-learn-number {
	color: rgb(253,94,83);
}

.home-review-number {
	color: #1bb893;
}

.home-forecast-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: #e3e3e3;
	padding: 10px;
	border-width: 0px;
	border-radius: 10px;
	gap: 5px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.home-forecast-title {
	font-family: hand;
	font-size: 20px;
	margin: 5px 0px 0px 0px;
}

.home-daily-forecast-container {
	display: flex;
	flex-direction: row;
	gap: 3px;
	width: 100%;
}

.home-level-progress-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 10px;
	background-color: #e3e3e3;
	border-width: 0px;
	border-radius: 10px;
	gap: 10px;
	box-sizing: border-box;
}

.home-level-progress-text {
	font-family: hand;
	font-size: 24px;
	margin: 10px 0px 0px 20px;
	border-bottom: solid 2px grey;
	width: fit-content;
}

.home-level-progress-bar-container {
	background-color: #ddd;
	flex-grow: 1;
	height: 20px;
	border-width: 0px;
	border-radius: 20px;
	overflow: hidden;
	min-width: 40%;
}

.home-level-progress-bar {
	background-color: #72cc50;
	height: 100%;
	border-radius: 20px;
}

.home-word-progress-container {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px 20px;
	padding: 5px;
	box-sizing: border-box;
	justify-content: space-around;
}

.home-sidebar-container {
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex-grow: 3;
	width: calc(30% - 10px);
	align-items: center;
	min-width: 200px;
	max-width: 400px;
}

.home-footer {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-image: url(./img/footer.svg);
}

.home-footer-bar {
	position: absolute;
	bottom: 0px;
	right: 0%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	background-color: #00000000;
}

.home-footer-button {
	background-color: #00000080;
	border-width: 0px;
	border-radius: 0px;
	color: whitesmoke;
	font-family: hand;
	font-size: 20px;
	cursor: pointer;
	padding: 5px 15px;
}

.home-footer-button:hover {
	background-color: #333333;
}

.home-footer-help-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}