@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;600&display=swap');

@import url("home.css");
@import url("details.css");

* {
	font-family: 'Mulish', sans-serif;
}

h1 {
	font-size: 2.875em;
	font-weight: 300;
}
h2 {
	font-size: 1.8125em;
	font-weight: 300;
}
p {
	font-size: 1.125em;
	font-weight: 200;
}
.text_center {
	text-align: center;
}
.float_left {
	float: left;
}
.flex {
	display: flex;
}
.flex_column {
	display: flex;
	flex-direction: column;
	place-items: center;
}
.items_center {
	display: flex;
	place-items: center;
}
@media only screen and (max-width: 600px) {
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.4em;
	}
	p {
		font-size: 1em;
	}
}