/******************************************************************************************
 *	Author: Aron Riesenfeld
 *	Date:	July 2017
 *
 ******************************************************************************************/

* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

html {
  min-height: 100vh;
}

body {
  min-height: 100vh;
  background-color: #1a1a1a;
}

nav {
  height: 7.5vh;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
a {
  text-decoration: none;
  color: #9d9;
}
nav a {
  color: #9d9;
  font-size: 1.375rem;
  margin: 0;
  width: 33.3vw;
  text-align: center;
}

.active {
  color: #1f1;
}

a:hover {
  color: #1f1;
}

.page {
  height: 90%;
}

.titletext {
  text-align: center;
  margin-top: 33vh;
}

.titletext img {
  width: 67vw;
}

h2 {
  color: #9d9;
  font-weight: normal;
  font-size: 3rem;
  margin-bottom: 3vh;
}

h4 {
  color: #9d9;
  font-weight: normal;
  font-size: 2rem;
}

.below-nav-area {
  min-height: 100vh;
  background-color: #2a2a2a;
}

@media (orientation: portrait) {
  nav a {
    font-size: 1.15rem;
  }
}
@media (max-width: 767px) {
  nav a {
    font-size: 1rem;
  }
}

/**************************************************************************************
*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*
*				                PROJECTS PAGE STYLES
*
*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
***************************************************************************************/

.showcase-container {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.case {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 12px;
  font-size: 1.8rem;
}

.case .subtitle {
  margin-top: 6px;
  width: 90vw;
  text-align: center;
  font-size: 0.9rem;
  color: #6a6;
}

.projects-page > footer {
  height: 10vh;
  text-align: right;
  padding-top: 20px;
  padding-right: 2vw;
  color: #9d9;
  font-size: 0.9rem;
}

.projects-page > footer > a {
  color: #1f1;
  text-decoration: underline;
}

/*	Borrowing 767px from Bootstrap, which considers small/mobile devices
	to be below 768 pixels in width. */
@media (max-width: 767px) {
  .case {
    font-size: 1.3rem;
    margin-top: 16px;
  }
  .case .subtitle {
    font-size: 0.8rem;
  }
  .projects-page > footer {
    font-size: 0.7rem;
  }
}
@media (max-width: 440px) {
  .case {
    font-size: 1.2rem;
  }
  .projects-page > footer {
    font-size: 0.65rem;
  }
}
@media (max-width: 320px) {
  .case {
    font-size: 1rem;
  }
  .projects-page > footer {
    font-size: 0.6rem;
  }
}

/**************************************************************************************
*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*
*								    RESUME PAGE STYLES
*
*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
***************************************************************************************/

.resume-section {
  margin: 20vh 20vw 20vh 20vw;
  color: #9d9;
  text-align: center;
}

.resume-section a {
  color: #1f1;
  text-decoration: underline;
}

/**************************************************************************************
*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*
*								    404 PAGE STYLES
*
*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
***************************************************************************************/

.error {
  width: 50vw;
  height: 50vh;
  margin-top: 15vh;
  text-align: center;
  background-color: #2a2a2a;
}

.error h2 {
  margin-top: 15vh;
  color: #f55;
}

.error h3 {
  color: #f55;
}

@media (max-width: 767px) {
  .error h2 {
    font-size: 2rem;
  }
  .error h3 {
    font-size: 1rem;
  }
}

/*****************************************************************************************
 *****************************************************************************************/
