@font-face {
	font-family: 'satoshi-regular';
	src: url('fonts/Satoshi-Regular.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'satoshi-bold';
	src: url('fonts/Satoshi-Black.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'satoshi-regular', sans-serif;
	margin-top: 3vh;
	margin-bottom: 0;
	margin-left: 3vw;
	margin-right: 3vw;
	background-color: black;
}

body p {
	margin:0;
	padding:0;
}

body div {
	border: 0.00px solid red;
	box-sizing: border-box;
}

.main-container {
	display: flex;
	flex-direction: column;
	height: 97vh;
}

.main-container-inside {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.header {
	display: flex;
	gap: 0px;
	width: 100%;
}

.header div {
	
}

.hdr-inl1 {
	color: #ffffff
}

.hdr-inl2 {
	color: #f98a1a
}

.hdr-inl3 {
	color: #f98a1a;
	text-decoration: underline;
	font-family: 'satoshi-bold', sans-serif;
}

.header-inline-col-1 {
	font-size: clamp(5px, 4vw, 500px);
	flex: 1;
	text-align: left;
	cursor: pointer;
}

.header-inline-col-1 a {
	text-decoration: none;
}

.header-inline-col-2 {
	font-size: clamp(5px, 4vw, 500px);
	flex: 1;
	text-align: right;
}

.under-header {
	text-align: right;
	display: flex;
	flex-direction: column;
}

.under-header-text {
	font-size: clamp(18px, 1.7vw, 150px);
	color: #ffffff
}

.title {
	flex: 1;
	display: flex;
	align-items: center;
}

.title-text {
	font-size: clamp(25px, 4vw, 500px);
	padding-top: 3vh;

}

.button {
	border: 0.4vw solid #f98a1a;
	box-sizing: border-box;
	height: 12vh;
	width: 55vw;
	max-height: 150px;
	max-width: 600px;
	font-size: 4vh;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.button:hover {
	background-color: #f98a1a;
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.button a {
	color: #ffffff;
	text-decoration: none;
	
}

.button-block {
	height: 20vh;
}

.under-button {
	display: flex;
	flex-direction: column;
}

.under-button-title-text-col-1 {
	text-align: right;
	font-size: clamp(0px, 3.7vw, 500px);
	color: #ffffff
}

.under-button-col-1{
	margin-top: auto;
	text-align: right;
	font-size: clamp(5px, 4vw, 500px);
	color: #ffffff
}

.under-button-title {
	height: 15%;
}

@media (max-width: 599px) {
	.header-inline-col-1 {
		font-size: clamp(5px, 11vw, 500px);
	}
}


@media (max-width: 599px) {
	.header-inline-col-2 {
		display: none;
	}
}

@media (max-width: 600px) {
	.under-button-col-1 {
		display: block;
		font-size: clamp(5px, 11vw, 500px);
	}
}

@media (min-width: 600px) {
	.under-button-col-1 {
		display: none;
	}
}

@media (max-width: 599px) {
	.under-header-text-col-1 {
		display: none;
	}
}

@media (min-width: 600px) {
	.under-header-text-col-1 {
		display: block;
	}
}

@media (min-width: 600px) {
	.under-button-title-text-col-1 {
		display: none;
	}
}

@media (max-width: 599px) {
	.under-button-title-text-col-1 {
		display: block;
	}
}

@media (max-width: 600px) {
	.title-text {
		font-size: clamp(5px, 11vw, 500px);
	}
}

@media (max-width: 600px) {
	.button {
		height: 9vh;
		width: 65vw;
		max-height: 150px;
		max-width: 80vw;
		font-size: 3vh;
		margin-top: 3vh;
	}
}