/* Example CSS file */ 

.blue_bg
{
	background-color: #24226a;
}

.landing
{
	
	background-image: url(../img/bg.png);
	background-size: 800px 800px;
	background-position: 150% center;
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

.landing h1
{
	color: white;
	text-align: center;
	font-family: "Poppins", sans-serif;
  	font-weight: 700;
}

#header
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	padding-top: 30px;
}



.landing
{
	height: 100vh;
}

.main_buttons
{
	display: grid;
	grid-template-columns: 32.2% 32.2% 32.2%;
	grid-auto-rows: 1fr;
	grid-auto-flow: row;
	justify-content: space-between;
}

.main_buttons button
{
	height: 125px;
	text-align: center;
	border: 4px solid #323c8e;
	color: #323c8e;
	border-radius: 8px;
	background-color: white;
	font-size: 20px;
	font-family: "Poppins", sans-serif;
  	font-weight: 700;
  	transition: all 0.3s ease;
  	width: 100%;
}

.main_buttons button.orange
{
	border: 4px solid #f55b41;
	color: #f55b41;
}

.main_buttons button.light_blue
{
	border: 4px solid #47bfd9;
	color: #47bfd9;
}

.main_buttons button:hover
{
	color: white !important;
	background-color: rgba(255, 255, 255, 0.25);
	transition: all 0.3s ease;
	border: 4px solid white;
}

#password
{
	width: 100%;
	border: 2px solid #F55B41;
	border-radius: 8px;
	height: 50px;
	padding: 10px;
}

@media (max-width: 992px)
{
	.landing
	{
		background-image: unset;
	}
	body
	{
		background-image: url(../img/bg.png);
		background-size: cover;
		background-position: 400px center;
		background-repeat: no-repeat;
	}

	.main_buttons
	{
		display: grid;
		grid-template-columns: 100%;
		grid-row-gap: 10px;
	}
}
