*, *:before, *:after {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

html {
	font: normal normal normal 10px/1.5 sans-serif;
}

body {
	color: #666;
	background: #eee;
	font-size: 1.7rem;
	font-family: Arial, sans-serif;
}

h1, h2 {
	font-family: "Arial Black", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	color: #231f20;
}

img {
	display: block;
	max-width: 100%;
}

.btn {
  text-decoration: none;
  border-radius: 5px;
  margin: 0 auto;
  display: inline-block;
  background: #0a4540;
  padding: .5em 1em;
  color: #fff;
  font-weight: bold;
}

.btn:hover {
  background: #126760;
}


/* <WRAPPER OPEN> */
#wrapper {
	margin: 0 auto;
	padding: 2rem;
	max-width: 1040px;
}
	/* <HEADER OPEN> */
	#header {

	}

		#nav {

		}

			.home {
				width: 4rem;
				height: 4rem;
				display: block;
				overflow: hidden;
				text-indent: -100rem;
				background: url(../img/arrow-icon.svg) center center no-repeat;
			}

		#logo {
			margin: 0 auto;
			max-width: 50rem;
		}
	/* <HEADER SHUT> */

	/* <MAIN OPEN> */
	#main {

	}
		#article {

		}

			@keyframes hover {
				0% {
					top: -25%;
				}

				50% {
					top: 25%;
				}

				100% {
					top: -25%;
				}
			}

			#article .title {
				position: relative;
				font-size: 4rem;
				line-height: 4rem;
			}

			#article .title:before {
				width: 8rem;
				height: 8rem;

				left: -10rem;
				position: absolute;

				content: '';
				display: block;
				background: url(../img/colibri.svg) center center no-repeat;

				animation-name: hover;
				animation-duration: 2.5s;
				animation-iteration-count: infinite;
				animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
			}

		.introduction {
			margin: 0 auto;
			font-size: 2rem;
			max-width: 760px;
			text-align: center;
		}

		/* <PORTFOLIO OPEN> */
		#portfolio {
			margin: 5rem 0;
			font-size: 1.2rem;
			font-style: italic;
			column-gap: 2rem;
			column-count: 4;
		}

			#portfolio a {
				display: block;
				overflow: hidden;
				break-inside: avoid;
				border-radius: .5rem;
				margin-bottom: 2rem;
			}

			#portfolio h3 {
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				padding: 2rem;
				position: absolute;
				background: rgba(200, 0, 0, .5);
				border-radius: .5rem;

				display: flex;
				text-align: center;
				flex-direction: column;
				justify-content: center;

				color: #fff;
				font-weight: normal;

				margin: 0;
				opacity: 0;
				transition: 200ms ease all;
			}

			#portfolio a:hover h3 {
				opacity: 1;
			}

			#portfolio img {
				border-radius: .5rem;
			}

			#portfolio article {
				position: relative;
			}

			#portfolio figure {
				margin: 0;
				padding: 0;
			}
		/* <PORTFOLIO SHUT> */

		/* <CREATION OPEN> */
		.project {

		}

			#categories {
				float: right;
				margin: 0 0 10rem 10rem;
				padding: 0;
				list-style: none;
			}

				#categories:before {
					color: #231f20;
					display: list-item;
					content: 'Types / Categories';
					font-family: Arial, sans-serif;
					text-transform: uppercase;
				}

				#categories li {
					font-size: .9em;
					font-style: italic;
				}

				.tagcomma {
					display: none;
				}

			#designedfor {
				font-size: 1.5rem;
				font-weight: normal;
				text-transform: uppercase;
			}

			#gallery {

			}

				#gallery figure {
					margin: 2rem 0;
					padding: 0;
				}
		/* <CREATION SHUT> */

	/* <MAIN SHUT> */

	/* <FOOTER OPEN> */
	#footer {
		text-align: center;
		text-transform: uppercase;
		font-size: 1.2rem;
	}
	/* <FOOTER SHUT> */
/* <WRAPPER SHUT> */

@media(max-width: 1230px) {
	#article .title:before {
		display: none;
	}
}

@media(max-width: 770px) {
	#categories {
		float: none;
		margin: 0;
		overflow: hidden;
	}

	#categories:before {
		display: none;
	}

	#categories li {
		float: left;
		margin-right: 1rem;
	}

	.tagcomma {
		display: inline;
	}
}

@media (max-width: 800px) {
	#portfolio {
		column-count: 3;
	}
}

@media (max-width: 550px) {
	#portfolio {
		column-count: 2;
	}
}
