
.demo-layout-transparent {
  background: url('../images/backgrounds/rockywall/rockywall.png');
}
.demo-layout-transparent .mdl-layout__header,
.demo-layout-transparent .mdl-layout__drawer-button {
  color: black;
}

i {
  font-weight: 400;
}

.fab {
  font-size: 21px;
  position: relative;
  top: 2px;
}

.fa-headers {
  position: relative;
  top: -12px;
  right: 16px;
}

#logo-main {
  width: auto;
  height: 75vh;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

html {
  position: relative;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

#mdl-wrapper {
    box-sizing: border-box;
    min-height: 100%;
    padding: 0 0 25px;
    position: relative;
}

.project-link:hover{
  text-decoration: underline;
}

#welcome-text{
  font-size: 22px;
  text-align: center;
}

 /* footer  */

#footer {
  /* position: absolute; */
  float: bottom;
  bottom: 0;
  left: 0;
  height: 25px;
  width: 100%;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 1px;
  font-size: small;
  font-weight: 100;
  text-align: center;
  border-top: 1px solid gray;
  background-color: rgba(40, 40, 40, .05);
}

#footer-legal {
float: right;
padding-right: 15px;
}

.footer-icon {
  font-size: 12px;
  position: relative;
  top: 2px;
}

/* animations */

.animatedFastFade {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animatedSlowFade {
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}