* {
	background-color: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Source Code Pro", monospace;
}

.card {
	align-items: center;
	border: 1px solid white;
	border-radius: 1rem;
	justify-content: space-between;
	margin: 1rem;
	padding: 2rem;
	width: 100%;
}
.card > *:not(:last-child) {
	margin-right: 1rem;
}
.card > .iconify {
	flex-shrink: 0;
	font-size: 3rem;
}
.card > div > h2 {
	margin-bottom: 0.25rem;
}

.container {
	margin: auto;
	max-width: 1080px;
	width: 100%;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}


a {
	text-decoration: none;
	color: white;
}
a:hover, .link:hover {
	background-color: #102 !important;
	border-color: #ebf;
	border-color: #daf;
	border-color: #c9f;
	color: #ebf;
	color: #daf;
	color: #c9f;
	cursor: pointer;
	transition: 0.3s;
}

hr {
	border: none;
	border-bottom: 1px solid #555;
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 2rem);
}

body {
	background-color: #2a292f;
	color: white;
	margin: auto;
	min-height: 100vh;
	max-width: 100vw;
	overflow-x: hidden;
}
body > header {
	background-color: #242427;
	white-space: nowrap;
	width: 100%;
	z-index: 99;
}

#menubar {
	flex-wrap: wrap;
	height: min-content;
	justify-content: space-around;
}
#menubar > div {
	justify-content: center;
}
#menubar > nav {
	justify-content: space-between;
	overflow-x: auto;
}
#menubar > * > * {
	padding: 1rem;
}

#loader-view {
	margin: auto;
	margin-top: 4rem;
}

#view {
	flex-grow: 1;
}

.ui-root > .ui-view > * {
	margin-bottom: 2rem;
}

#banner {
	align-items: center;
	font-size: 1.25rem;
	margin: 4rem 0;
}
#banner > h1 {
	font-family: "Iceberg", sans-serif;
	font-size: 3rem;
}

#home-root #navcards {
	justify-content: space-around;
}
#home-root #navcards > .pair {
	flex-wrap: wrap;
}

#rzl-root #overview {
	flex-wrap: wrap;
}
#rzl-root #overview > .card {
	border: none;
	padding: 1rem;
}
#rzl-root #examples > .example {
	margin: 1rem;
}
#rzl-root #examples > .example > *:not(:last-child) {
	margin-bottom: 0.25rem;
}
#rzl-root #examples > .example code {
	border: 1px solid #555;
	display: block;
	overflow-x: auto;
	padding: 1.5rem;
}
#rzl-root #examples > .example code .code-comment {
	color: #777;
}
#rzl-root #next > h2 {
	margin: auto;
	margin-bottom: 0.5rem;
}
#rzl-root #next > #steps {
	justify-content: center;
}
#rzl-root #next > #steps > * {
	margin: 0 0.5rem;
	padding: 1rem;
	background-color: #537;
}

#portfolio-root #projects {
	flex-wrap: wrap;
	justify-content: space-around;
}
#portfolio-root #projects > .card {
	border: none;
	padding: 1rem;
}
#portfolio-root #projects > .card > * {
	margin: 0;
}
#portfolio-root #projects > .card > *:not(:last-child) {
	margin-bottom: 0.5rem;
}
#portfolio-root #projects > .card > img {
	width: 100%;
}

#contact-root #methods {
	flex-wrap: wrap;
}

body > footer {
	background-color: #242427;
	width: 100%;
	font-size: 0.75rem;
}
body > footer > .container {
	flex-wrap: wrap;
	justify-content: space-around;
	padding-top: 1rem;
}
body > footer > .container > div {
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
body > footer > .container > div > * {
	margin: 0 1rem;
}
body > footer > .container > div > div > span {
	padding-bottom: 0.25rem;
}

#sitemap > div > span {
	color: grey;
}

@media only screen and (min-width: 540px) {

	#home-root #navcards > .pair > .card,
	#portfolio-root #projects > .card {
		width: calc(50% - 2rem);
	}

}

@media only screen and (min-width: 768px) {

	#menubar > nav {
		justify-content: space-around;
	}

}

@media only screen and (min-width: 1024px) {

	#rzl-root #overview > .card,
	#contact-root #methods .card {
		width: calc(33% - 2rem);
	}

}
