.header-transition-enter {
  opacity: 0;
  transform: scale(0.9);

}
.header-transition-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 3000ms, transform 3000ms;
}

.header-wrapper {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (min-height: 382px) and (min-width: 500px) {
  .header-wrapper {
    height: 80vh;
  }
  #root {
    height: inherit !important;
  }
}

.App-header {
    display: flex;
    flex-direction: column; 
    align-items: center;
    color: white;
    font-family: sans-serif;
    padding: 0px 30px;
    transition: all .5s ease-in-out;
   transform: scale(.1);
   animation: fadeIn;
    
}

.fade-in {
  animation: fadeIn ease 3s;
-webkit-animation: fadeIn ease 3s;
-moz-animation: fadeIn ease 3s;
-o-animation: fadeIn ease 3s;
-ms-animation: fadeIn ease 3s;
}

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

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

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

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

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

.transform-header {
  transform: scale(1);
}

.App-header > * {
  padding: 15px;
}

.App-header img {
  border-radius: 100px;
  max-height: 50vh;
  margin-right: 5px;
}

.header-links {
  margin-left: 5px;
}

.header-links img {
    border-radius: 0;
    height: 40px;
    filter: brightness(0) invert(1);
    padding: 5px 10px 5px 10px;
}

.header-links > img:last-child {
      height: 35px;
    width: 35px;
    margin-left: 5px;
    cursor: pointer;
}

.App-header > div {
  display: flex;
  margin-left: 12px;
  flex-direction: column;
  align-items: center;
  padding-top: 3px;
}
.App-header h3 {
  margin: 5px;
  font-weight: 100;
}
.App-header h1 {
  margin: 5px;
  font-weight: 500;
}

.hide-header {
  opacity: 0;
}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
}

/* Desktop Styles */
@media only screen and (min-width: 961px) {
  .App-header, .header-wrapper {
    flex-direction: row;
  }
}