* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

.wrapper {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  position: fixed;
  background-color: #fff;
  top: 0;
  right: 0;
  left: 0;
  padding: 5px 0;
  -webkit-box-shadow: 0 2px 5px 0 #A1A1A1;
  box-shadow: 0 2px 5px 0 #A1A1A1;
}

header div.wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

a#logo {
  width: 100px;
  height: 80px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-image: url('../images/Z22Image.png');
}

header nav { margin-left: auto; }

header nav a {
  font-size: 14px;
  font-weight: bold;
  margin-left: 20px;
  padding: 0 10px 5px 10px;
  text-decoration: none;
  color: #d7572c;
  transition: 0.2s all linear;
  border: transparent solid 3px;
}

header nav a:hover {
  color: #7a1218;
  border-bottom-color: #da672d;
}

div#falseHeader { height: 100px; }

section#home { padding: 80px 0; }

section#home h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 30px;
  color: #cf322a;
}

section#home h1 span { color: #e18a2e; }

section#home p {
  margin: 20px 0;
  font-size: 16px;
  line-height: 25px;
}

section#projects {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

section#projects h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #e18a2e;
}

section#projects h2 span { color: #cf322a; }

section#projects a {
  display: inline-block;
  vertical-align: middle;
  margin: 20px;
  font-size: 18px;
  color: #cf322a;
  background-color: #fff;
  text-decoration: none;
  padding: 6px 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -webkit-box-shadow: 0 2px 5px 0 #7A7A7A;
  box-shadow: 0 2px 5px 0 #7A7A7A;
  transition: 0.2s all linear;
}

section#projects a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-image: url('../images/placeholder.svg');
}

section#contact div.wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: row nowrap;
}

section#contact div.wrapper aside,
section#contact div.wrapper address { width: 50%; }

section#contact div.wrapper aside {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  min-height: 250px;
  background-image: url('../images/contact.jpeg');
}

section#contact div.wrapper address div.inner {
  margin: 40px;
  font-style: normal;
}

section#contact div.wrapper address p {
  font-size: 18px;
  color: #cf322a;
  margin: 20px 0;
}

section#contact div.wrapper address p span {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  margin-right: 20px;
}

section#contact div.wrapper address p span.mail { background-image: url('../images/email.svg'); }

section#contact div.wrapper address p span.ph { background-image: url('../images/phone.svg'); }

footer {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  background-color: #fff;
}
