body { /* for JS */
  display: none;
}

html, body, .container {
  height: 100vh;
}

body {
  font-family: 'Rubik', sans-serif;
  color: black;
}

main {
  display: flex;
  padding-left: 10%;
  padding-right: 10%;
  min-height: 99%;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

#logo-itcross {
  display: block;
  width: 30rem;
}

.logo {
  display: block;
  width: 7rem;
  margin-top: 2rem;
}

#logo-node {
  padding: 1rem;
}

h1 {
  color: crimson;
  background-color: darkgreen;
  padding: 0.5rem 2.5rem 0.5rem 2.5rem;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 400;
  text-align: center;
}

a {
  color: #ffffff;
}

p {
  background-color: darkgreen;
  padding: 1rem 2.5rem 1rem 2.5rem;
  font-size: 1.7rem;
  text-align: center;
}

strong {
  font-weight: 800;
}

#tech-stack {
  color: #C4D9EE;
}

/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
  background-image: url(../images/bg-big.jpg);

  /* Image is centered vertically and horizontally at all times */
  background-position: center center;

  /* Image doesn't repeat */
  background-repeat: no-repeat;

  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;

  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;

  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color: #CDC8AB;

  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(../images/bg-small.jpeg);
  }
}
