header {
	text-align: center;
	margin-bottom: 50px;
	font-family: 'Montserrat', sans-serif;
    font-size: 30px;
}

.intro {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	margin-bottom: 20px;
    
}

.button-container {
    margin-left: 300px;
    margin-right: 300px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0c31e9;
	color: #fff;
	border: none;
	border-radius: 10px;
	margin: 10px;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	transition: background-color 0.3s ease;
	font-family: 'Montserrat', sans-serif;
}

.btn:hover {
	background-color: #0453a8;
}

@media only screen and (max-width: 480px) {
	header {
		font-size: 24px;
	}
	
	.intro {
		font-size: 24px;
	}
	
	.button-container {
		margin: 0;
		padding: 0;
		flex-direction: column;
	}
	
	.btn {
		margin: 5px 0;
	}
}
