*{
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
}

b{
	font-weight: 700;
}

body{
	margin: 0;

	overflow-x: hidden;
}

.fullscreen_hldr{
	width: 100vw;
	min-height: 100vh;

	display: flex;
	justify-content: center;

	/*background-color: #202020;*/
	background-image: url("./imgs/AEStrada_tape_wireframe_tile_clipped.svg");
	background-size: 10cm;
	/*animation: bgrnd_shift 120s linear infinite;*/
}

@keyframes bgrnd_shift{
	from{
		background-position: 0 0;
	}

	to{
		background-position: 100% 100%;
	}
}

.central_column_hldr{
	width: 40%;
	height: fit-content;
	min-height: 100vh;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;

	background-color: #373737e0;
}

@media (orientation: portrait){
	.central_column_hldr{
		width: 90%;
	}
}

.column_section_hldr{
	width: calc(95% - 20px);
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	
	/*border-style: solid;*/
}

#logo_hldr{
	display: flex;
	justify-content: center;
}

@media (orientation: portrait){
	#logo_hldr{
		margin-top: calc(2vh + 50px);
	}
}

#logo_hldr > img{
	width: 80%;
}

#links_hldr{
	display: flex;
	justify-content: center;

	padding: 5px;
}

#links_hldr > a{
	margin: 5px;
}

#desc_hldr > p{
	font-size: 1.3em;
	hyphens: auto;
	text-align: justify;
	color: #cccccc;
}

#buttons_hldr{
	min-height: 20%;

	display: flex;
	justify-content: space-evenly;
	align-items: center;

	border-top: solid;
	border-bottom: solid;
	border-width: 2px;
	border-color: #585858;
}

@media (orientation: portrait){
	#buttons_hldr{
		order: 3 !important;
	}
}

#buttons_hldr_info{
	display: block;
	color: #C7B86B;
	font-size: 1.5em;
}

#buttons_hldr > input{
	min-width: 25%;
	height: 50%;

	padding: 5px;

	font-size: 1.5em;
	font-weight: 700;
	color: white;

	background-color: #202020;

	cursor: pointer;
}

#signup_bttn{
	color: #828282 !important;
	background-color: #353535 !important;
	cursor: auto !important;
}

#return_bttn{
	position: absolute;
	top: 2vh;
	left: 5vw;
}
