
body {
	margin: 0;
	background-color: #0e0e0e;
}

.menu {
	width: 100vw;
	height: 90px;
	margin: 0;
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(4px);
	font-family: raleway;
	position: fixed;
	z-index: 99;
}

.menu-buttons {
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
}

.menu-button {
	display: flex;
	width: fit-content;
	height: 100%;
	float: left;
	padding-right: 20px;
	padding-left: 20px;
	text-decoration: none;
}

.menu-button-title {
	margin: 0;
	padding: 0;
	align-self: center;
	color: #aaa;
	font-size: 20px;
	font-weight: 600;
	transition: color 0.2s;
}

.menu-button:hover {
	.menu-button-title {
		color: #fff;
	}
}

.sandwitch-menu {
	z-index: 999;
	position: fixed;
	margin: 20px;
	padding: 10px;
	background-color: #222;
	border: solid #333 2px;
	border-radius: 20px;
	display: none;
}

.sandwitch-image {
	width: 60px;
}


h1 {
	margin: 0;
}

.page {
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	padding: 40px;
	width: 900px;
	background: linear-gradient(180deg, #1a1a1a, #1d1d1d);
	border-radius: 30px;
	border: solid 2px #252525;
}

.actual-page {
	color: #fff;
}

footer {
	width: 100%;
	color: #fff;
}

.footer-text {
	font-family: roboto;
	color: #444;
	text-align: center;
}

/* Responsive */

@media (max-width: 1100px) {
	.page {
		width: 800px;
	}
}

@media (max-width: 1005px) {
	.page {
		width: 600px;
	}

	.project {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 70%;
	}

	.article-cover {
		width: 100%;
		display: block;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.article {
		height: fit-content;
		width: 70%;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.article-title {
		margin-left: 20px;
	}

	.author-and-date {
		margin-left: 20px;
		margin-bottom: 10px;
	}

	.article-text {
		margin-left: 20px;
		width: 90%;
	}
}

@media (max-width: 880px) {
	.page {
		width: 500px;
	}
}

@media (max-width: 720px) {
	.page {
		width: 400px;
	}

	.project {
		width: 100%;
	}

	.article {
		width: 80%;
	}

	.fastinfo-title {
		font-size: 40px;
	}

	.fasinfo-text {
		width: 100%;
	}

	.main {
		background-image: url("../img/bg2.png");
	}
}

@media (max-width: 560px) {
	.subtitle-text {
		font-size: 25px;
	}

	.sandwitch-menu {
		display: block;
	}

	.menu {
		height: 100vh;
		left: -999px;
		transition: left .2s;
	}

	.active {
		left: 0px;
	}

	.menu-buttons {
		display: block;
		align-items: center;
	}

	.menu-button {
		display: block;
		width: 100%;
		height: fit-content;
		padding-top: 12.5%;
		padding-bottom: 12.5%;
		text-align: center;
	}

	.menu-button-title {
		font-size: 20px;
	}
}

@media (max-width: 520px) {
	.page {
		width: 300px;
		padding: 22px;
	}

	.email {
		font-size: 16px;
		padding-top: auto;
	}

	.article {
		width: 100%;
	}
}

@media (max-width: 430px) {
	.subtitle-text {
		font-size: 20px;
	}

	.subtitle-text-emoji {
		width: 30px;
	}
}

@media (max-width: 400px) {
	.main {
		background-image: url("../img/bg3.png");
	}
}

@media (max-width: 380px) {
	.page {
		width: 80vw;
	}

	.project-cover {
		height: 200px;
	}

	.email-container {
		height: 20px;
	}

	.email {
		padding: 0;
	}

	.copy {
		display: none;
	}
}

@media (max-width: 375px) {
	.fasinfo-text {
		font-size: 20px;
	}

	.subtitle-text-emoji {
		display: none;
	}
}

@media (max-width: 350px) {
	.main {
		background-image: url("../img/bg4.png");
	}
}


@media (max-height: 720px) {
	.socials {
		display: none;
	}
}

.center {
	display: flex;
	justify-content: center;
}

.left {
	left: 0px;
}

.bold {
	font-weight: 800;
}