.home-page {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
	background-color: whitesmoke;
	position: relative;
	align-items: center;
}

.home-content-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 800px;
	padding: 0px 10px 0px 10px;
	box-sizing: border-box;
	margin-top: 40px;
	gap: 10px;
}

.home-about {
	font-family: hand;
	font-size: 18px;
	width: 100%;
	height: min-content;
	white-space: pre-line;
	background-color: #bddaff;
	border-radius: 10px;
	color: royalblue;
	padding: 10px;
	box-sizing: border-box;
}

.home-class-container {
    width: 100%;
    background-color: #e3e3e3;
    padding: 10px;
    border-width: 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    align-items: center;
}

.home-spinner {
    height: 20px;
    background-image: url(./img/spinner.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    width: 20px;
}

.home-class-create {
	width: 100%;
    font-family: 'hand';
    font-size: 40px;
    color: #666666;
    cursor: pointer;
    text-align: center;
    border-width: 5px;
    border-style: dashed;
    border-radius: 10px;
    border-color: #6be26c;
    padding: 10px 0px;
    box-sizing: border-box;
    background-color: whitesmoke;
}

.home-create-class-form-container {
	width: 100%;
	display: flex;
	flex-direction: column;
    gap: 10px;
    padding: 20px 0px;
}

.home-create-class-name-label {
	font-family: hand;
	font-size: 20px;
	margin: 0px;
}

.home-create-class-name-input {
	font-family: hand;
    font-size: 20px;
    border-width: 2px;
    border-color: #666666;
    border-radius: 5px;
    border-style: solid;
    padding: 5px;
    box-sizing: border-box;
}

.home-create-class-name-input:focus {
	outline: none;
}

.home-create-class-submit {
	background-color: #1bb893;
    color: white;
    font-family: hand;
    font-size: 20px;
    border-width: 0px;
    border-radius: 5px;
    width: min-content;
    padding: 10px;
    align-self: center;
    cursor: pointer;
    user-select: none;
}