/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@100;200;300;400;500;600;700&display=swap");

/* parts */
@import "./nav.css";
@import "./articles.css";
@import "./footer.css";
@import "./post-cards.css";

body {
	background-color: #111;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
}

.main {
	background-color: #000000f0;
	position: relative;
	width: 75%;
	margin: 0 auto;
	padding: 2em;
	border-radius: 5px;

}

.title {
	font-family: "Monoton", cursive;
	font-size: 15vw;
	cursor: default;
}

.red {
	text-shadow: 0 0 80px red, 0 0 30px firebrick, 0 0 6px darkred;
	color: red;
}

.white {
	text-shadow: 0 0 80px #ffffff, 0 0 30px #008000, 0 0 6px #0000ff;
	color: white;
}

.wrapper {
	position: fixed;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}


/* Google Pixel 7 Portrait */
@media only screen and (max-width: 450px) and (orientation: portrait) {
	.main {
		width: 100%;
		padding: 0;
	}
}

/* adaptive */

@media only screen and (max-width: 360px) {
	.main {
		width: 100vw;
	}
}
