.page_container > p {
	text-align: center;
	font-size: 1.3vw;
	color: white;
	margin: 20px 0 0 0;
}

.button_container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 1.2em;
	margin-top: 20px;
	width: 100%;
}

.button_container > a {
	padding: 0.5em 0 0.5em 0;
	font-size: 2vw;
}

.outgoing_container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 2em;
}

.item_container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 0.3em;
	width: 100%;
}

.item_container > a {
	padding: 0.5em 0 0.5em 0;
	font-size: 1.5vw;
}

.item_container > p {
	display: flex;
	color: white;
	justify-content: center;
	margin: 0;
	font-size: 1vw;
}

@media (max-width:1000px) {
	.page_container > p {
		font-size: 16px;
	}
	
	.outgoing_container {
		flex-direction: column;
	}
	
	.item_container > a, .button_container > a {
		font-size: 30px;
	}
	
	.item_container > p {
		font-size: 20px;
	}
}