@font-face {
  font-family: "dosis-light";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: local("Dosis-Light"), url("/assets/font/dosis-light.woff2") format("woff2");
}
@font-face {
  font-family: "raleway-light";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: local("Raleway-Light"), url("/assets/font/raleway-light.woff2") format("woff2");
}
body, html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: raleway-light, sans-serif;
  background: #283033;
  display: flex;
  flex-direction: column;
  color: white;
}

body > * {
  transition: flex 1s ease;
}

#logo {
  width: 180px;
  margin: 4vh 0 20px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  border-top: 1px dashed #9d3238;
  margin-bottom: 2vh;
  flex: 1;
}
footer span {
  text-transform: uppercase;
  font-size: 0.9em;
  opacity: 34%;
}

header {
  border-bottom: 1px dashed #9d3238;
  display: flex;
  flex: 1;
}

nav {
  background: #283033;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
nav ul {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
nav ul li {
  list-style: none;
  display: flex;
  align-items: stretch;
  transition: all 0.3s ease;
}
nav ul li a {
  font-family: dosis-light, sans-serif;
  text-decoration: none;
  color: white;
  font-size: 16pt;
  text-transform: uppercase;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  letter-spacing: 4px;
}
nav ul li a::before {
  letter-spacing: 2px;
  visibility: hidden;
}
nav ul li .link-about::before {
  content: "About";
}
nav ul li .link-projects::before {
  content: "Projects";
}
nav ul li .link-contact::before {
  content: "Contact";
}
nav ul li .link-login::before {
  content: "Client Login";
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4vh;
}
.content form div label {
  display: block;
  text-transform: uppercase;
  font-size: 0.9em;
  opacity: 0.8;
  margin: 20px 0 5px;
}
.content form div input[type=email],
.content form div input[type=password],
.content form div input[type=text] {
  border: none;
  padding: 10px 15px;
  margin: 5px 0;
  font-size: 1.1em;
  font-weight: lighter;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.content form div input[type=submit] {
  float: right;
  background: none;
  text-transform: uppercase;
  border: none;
  color: white;
  padding: 20px 0 20px 20px;
  font-size: 1.1em;
  cursor: pointer;
}
.content form div input:invalid {
  box-shadow: none;
}
.content form div input:invalid:not(:focus) {
  border-right: 5px solid red;
}
.content form div input {
  border-right: 5px solid transparent;
}

/*# sourceMappingURL=main.css.map */
