@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Fira+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Share+Tech&display=swap'); 
html {
  font-size: 20px;
}

body {
  background-color: #000;
  color: #FFF;
  font-family: 'Fira Sans', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 800px;
  margin-left:auto;
  margin-right:auto;
  padding: 0 12px;
  --fa-secondary-opacity: 1.0;
  --fa-primary-color: #c87333;
  --fa-secondary-color: #FFF;
}

article {
  margin 12px;
  line-height: 2;
}

article img { 
  max-width: 100%;
}

h1, h2, h3 {
  font-family: 'Share Tech', sans-serif;
  color: #FFF;
}

h1 {
  color: #B87333;
  font-size: 2rem;
}

a {
  color: #B87333;
  text-decoration: none;
}


h2.subtitle {
  font-size: 1.5rem;
}

.add-to-contacts {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin: 12px 0;
	width: 100%;
}

@media (min-width: 800px)	{
	.add-to-contacts {
		display: none;
	}
}

.add-to-contacts a {
	display: block;
	border: none;
	border-radius: 6px;
	background-color: #c87333;
	color: #FFF;
	text-transform: uppercase;
	padding: 12px;
	text-align: center;
	width: 100%;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px; 
}

.header a {
  display: block;
  height: 100%;
}

.header img {
  height: 100%;
}

.header img.avatar {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.hero {
  width: 100%;
}

.hero img {
  margin-top: 48px;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.home .hero {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  background-image: url('../images/home-hero.jpg');
  background-size: cover;
  z-index: 1;
  padding: 80px 48px 48px 48px;
} 

.home .hero::after {
  position: absolute;
  content: ' ';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00000088;
  border-radius: 12px;
  z-index: 2;
}

.home .hero h1 {
  display: block;
  flex: 0 0 256px;
  width: 256px;
  height: 256px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 3;
}

.home .hero h2 {
  font-size: 2rem;
  color: #FFF;
  margin: 50px 0 0 0;
  z-index: 3;
}


footer {
  padding-top: 48px;
  border-top: solid 2px #c87333;
  margin-top: 96px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

footer > * {
  flex: 1 1 auto;
}

footer ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

footer ul li {
  margin: 0 0 6px 0;
  padding: 0;
}

footer ul li img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  object-position: left;
  margin-right: 6px;
}

footer ul li i {
  margin-right: 6px;
  width: 20px;
  height: 20px;
  text-align: center;
}

footer img.logo {
  width: 120px;
}

footer img.avatar {
  width: 120px;
  border-radius: 50%;
}

footer div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

@media (max-width: 600px) {

  .home .hero {
    flex-direction: column;
    height: auto;
    padding: 12px;
  }

  footer {
    flex-direction: column;
    
  }
}

