body #app main {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.index-block {
	background: url('../images/index-bg.webp') no-repeat;
	background-size: cover;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index-block-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 40%;
}

.index-block-card {
	position: relative;
	cursor: pointer;
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	border-radius: 100%;
	overflow: hidden;
}

.index-block-card img {
	opacity: .8;
}

.index-block-card:hover img {
	opacity: 1;
	transition: .3s all;
}

.index-block-card button {
	position: absolute;
}

.navbar {
	display: none;
}

.error-message {
	display: none;
	color: red;
	font-size: 14px;
}

@media screen and (max-width: 1000px) {
	.index-block-row {
		width: 70%;
	}
}
@media screen and (max-width: 580px) {
	.index-block-row {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.index-block-card:first-child {
		margin-bottom: 2rem;
	}
}