.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.title { font-size: 1.25vw; margin: 0; }
.subtitle { font-size: 2vw; margin: 0; }
.notice { font-size: 1.25em; font-weight: bold; margin-top: 2vh; color: var(--gcci-brand-orange); display: none; }

.login {
	width: 240px;
	height: 60px;
	background-color: transparent;
	color: var(--gcci-dark-gray);
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	border-radius: 10px;
	border: 2px solid var(--gcci-dark-gray);
	margin-top: 2vh;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s;
	display: none;
}

.login:hover {
	transform: scale(1.05);
}

.google-logo {
	height: 35px;
	width: 35px;
	margin: 0;
	margin-right: 10px;
}

.menu {
	width: 80%;
	height: auto;
	grid-auto-rows: 120px;
	grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
	margin: 50px auto 0 auto;
	display: none;
}

.menu-option {
	width: calc(100% - 100px);
	height: calc(100% - 50px);
	margin: 25px 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid var(--gcci-dark-gray);
	border-radius: 25px;
	font-weight: bold;
	font-size: 1.25em;
	cursor: pointer;
	transition: transform 0.2s;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.menu-option:hover {
	transform: scale(1.05);
}

.menu-option-disabled {
	transition: none;
	opacity: 0.4;
	cursor: default;
}

.menu-option-disabled:hover {
	transform: none !important;
}