
.menu-list a:hover {
	background-color: #a8aeb7;
}

@media screen and (min-width: 1024px) {
	.menu-content {
		grid-template-columns: 400px 1fr;
		display: grid;
	}
	.limited-width-menu {
		width: calc(100vw - 400px);
	}
}

@media screen and (max-width: 1023px) {
	.menu-content {
	    border-top: none;
	    overflow: hidden;
	}
	.limited-width-menu {
		width: 100vw;
	}
}

.header-img {
	background-image: url("/static/img/header-background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 200px;
	width: 100%;
}

.logo-img {
	background-image: url("/static/img/logo.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 50px;
	width: 100%;
}