@import "settings.css";

/** PAGE CONTENT **/
.pageContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100% - var(--spacing-m) * 2);
	min-height: 100vh;
}

/** HOME **/
.welcomeBox {
	font-family: var(--mono-font);
	display: flex;
	margin-top: auto;
	margin-bottom: auto;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.moreButton {
	font-family: var(--mono-font);
	font-size: var(--size-s);
	font-weight: bolder;
	border: 2px solid var(--color-green);
	border-radius: var(--border-r-s);
	color: var(--color-text);
	background-color: var(--color-bg);
	padding: var(--spacing-s);
	cursor: pointer;
}

#peter {
	color: var(--color-blue);
}

#k {
	color: var(--color-text);
}

#moss {
	color: var(--color-red);
}

/** ABOUT **/
.fab, .linkedIn {
	color: var(--color-blue);
	font-size: var(--size-m);
	font-family: var(--mono-font);
	font-weight: bolder;
}

.linkedIn {
	margin-top: var(--spacing-m);
	margin-bottom: var(--spacing-m);
	align-self: flex-end;
}

.info {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	width: 100%;
	font-family: var(--mono-font);
	margin-bottom: var(--spacing-m);
}

.textLines {
	display: flex;
	flex-direction: column;
	align-self: center;
}

.textLinesInner {
	display: flex;
	flex-direction: row;
}

.textLinesPictures {
	display: flex;
	flex-direction: column;
	margin-left: var(--spacing-m);
	align-items: center;
}

.textLinesInfo {
	margin-left: var(--spacing-s);
}

.infoText {
	color: var(--color-yellow);
}

.profilePicture {
	border-radius: 50%;
	width: 150px;
	height: 150px;
	align-self: flex-start;
	object-fit: cover;
	object-position: top;
	border: 2px solid var(--color-green);
}

.about {
	text-align: center;
}

/** CONTACT **/
.contact {
	width: 80%;
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 600px) {
	.profilePicture {
		width: 200px;
		height: 200px;
	}

	.contact {
		width: 40%;
	}

	.moreButton {
		font-size: var(--size-m);
		padding: var(--spacing-m);
	}

	.moreButton:hover {
		color: var(--color-green);
		box-shadow: 0px 0px 20px 4px rgba(0,0,0,0.5);
		-moz-box-shadow: 0px 0px 20px 4px rgba(0,0,0,0.5);
		-webkit-box-shadow: 0px 0px 20px 4px rgba(0,0,0,0.5);
	}

	.info {
		width: 30%;
	}
}