@import "ld-topbar.css";

.landing{
	width: 100%;
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.landing-container{
	width: 100%;
	padding: 0 2.5%;
}

.landing-banner{
	width: 100%;
	background-color: var(--urc-gray-900);
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5vh;
}

.landing-banner-title{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2vh;
	color: var(--urc-white);
}

.landing-banner-logo{
	height: 40vh;
	width: 40vh;
	margin: -5vh 0;
	border-radius: 50%;
/*	box-shadow: 0 0 10px var(--urc-white);*/
/*	background-color: var(--urc-white);*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.landing-banner-logo img{
	width: 60%;
}

.landing-banner-title h1{
	font-size: 3.5em;
}

.landing-banner-title h3{
	text-transform: capitalize;
}

.landing-banner-title p{
	width: 80%;
	text-align: center;
}

.landing-banner-menu{
	display: flex;
	justify-content: space-evenly;
	width: 50%;
}

.landing-content{
	width: 100%;
	padding: 0 2.5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 5vh 0;
}