* {
	font-family: "BP";
	font-weight: 400;
}

h1.heading, h2.heading {
	text-align: center;
}

h1.heading {
	font-size: 2.5rem;
}

h2.heading {
	font-size: 1.75rem;
}

h2 {
	margin: 0.5rem;
}

html {
	margin: 0;
}

body {
	margin: 0;
}

ul {
	list-style: none;
	padding: 0;
}

li.li-title{
	font-size: 1.25rem;
}

li.li-subtitle{
	font-size: 1.125rem;
}

li.li-link {
	font-size: 1.125rem;
}

li.li-description {
	font-size: 1rem;
}

div.separator {

	margin-top: 1rem;
	margin-bottom: 1rem;
	width: 100%;
	height: 5%;
	color: rgb(0, 0, 0);
	display: flex;
	align-items: center;
	font-size: 1.5vh;
	text-align: center;

}

div.separator::before,
div.separator::after {

	content: '';
	flex: 1;
	border-bottom: 1px solid rgb(127, 127, 127);

}

div.separator:not(:empty)::before {

	margin-left: 1vw;
	margin-right: 0.5vw;

}

div.separator:not(:empty)::after {

	margin-left: 0.5vw;
	margin-right: 1vw;

}

div.div-main {
	background-color: white;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 0;
}

div.div-wrapper-pink {
	padding: 1rem;
	margin: 2.5vh 2.5vw;
	min-width: 250px;
	width: 25vw;
	position: relative;
	background-color: white;
	border-width: 2px;
	border-style: solid;
	border-color: #f72585;
	box-shadow: 0px 2px 5px rgb(0, 0, 0);
}

div.div-wrapper-pink::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	right: -15px;
	bottom: -15px;
	background-image: 
		repeating-linear-gradient(-45deg, 
		#f72585, 
		#f72585 7.5px, 
		transparent 7.5px, 
		transparent 15px);
	z-index: -1;
}

div.div-wrapper-violet {
	padding: 1rem;
	margin: 2.5vh 2.5vw;
	width: 25vw;
	position: relative;
	background-color: white;
	border-width: 2px;
	border-style: solid;
	border-color: #560bad;
	box-shadow: 0px 2px 5px rgb(0, 0, 0);
}

div.div-wrapper-violet::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	right: -15px;
	bottom: -15px;
	background-image: 
		repeating-linear-gradient(-45deg, 
		#560bad, 
		#560bad 7.5px, 
		transparent 7.5px, 
		transparent 15px);
	z-index: -1;
}

div.div-wrapper-purple {
	padding: 1rem;
	margin: 2.5vh 2.5vw;
	width: 25vw;
	position: relative;
	background-color: white;
	border-width: 2px;
	border-style: solid;
	border-color: #b5179e;
	box-shadow: 0px 2px 5px rgb(0, 0, 0);
}

div.div-wrapper-purple::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	right: -15px;
	bottom: -15px;
	background-image: 
		repeating-linear-gradient(-45deg, 
		#b5179e, 
		#b5179e 7.5px, 
		transparent 7.5px, 
		transparent 15px);
	z-index: -1;
}

div.div-wrapper-blue {
	padding: 1rem;
	margin: 2.5vh 2.5vw;
	width: 25vw;
	position: relative;
	background-color: white;
	border-width: 2px;
	border-style: solid;
	border-color: #3f37c9;
	box-shadow: 0px 2px 5px rgb(0, 0, 0);
}

div.div-wrapper-blue::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	right: -15px;
	bottom: -15px;
	background-image: 
		repeating-linear-gradient(-45deg, 
		#3f37c9, 
		#3f37c9 7.5px, 
		transparent 7.5px, 
		transparent 15px);
	z-index: -1;
}

button.button-main {
	background-color: rgb(31, 31, 31);
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom: none;
	box-shadow: 0 4px rgb(63, 63, 63);
	color: white;
	width: 160px;
	height: 50px;
	outline: none;
	transition: 50ms;
}

button.button-main:hover {
	background-color: rgb(127, 127, 127);
	cursor: pointer;
}

button.button-main:active {
	background-color: rgb(127, 127, 127);
	margin-top: 4px;
	box-shadow: none;
	cursor: pointer;
}