#div_banner {
	max-width: 1000px;
	width: 60%;
}

#img_banner {
	object-fit: contain;
	width: 100%
}

#div_center {
	display: flex;
	justify-content: center;
}

.button {
	background-color: Aqua;
	color: Black;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;

	&:hover {
		background-color: Aquamarine;
		color: Brown;
	}

	&:active {
		background-color: #ddd;
		color: #000;
	}
}

#div_enter {
	max-width: 700px;
	width: 70%;
}