@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
  font-family: 'Montserrat';
}

body {
  margin: 0;
  background-color: #363636;
}

.wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  justify-content: center;
  align-items: center;
  border: 0;
}

.blurBox {
  background-color: rgba(0, 0, 0, 0.0);
  border-radius: 5px;
  font-family: sans-serif;
  text-align: center;
  line-height: 1;
 -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(20px);
}

@keyframes fadeIn {
    0%   { opacity:0.0; }
    1%   {display: block;}
    50%  { opacity:0.5; }
    100% { opacity:1.0; }
}

@keyframes fadeOut {
    0%   { opacity:1.0; display: flex;}
    50%  { opacity:0.5; }
    99% { opacity:0.0; }
    100% { display: none;}
}

.appear {
  color: white;
  display: flex;
  animation: fadeIn 1s;
}

.disappear {
  display: none;
  animation: fadeOut 1s;
  transition: display 1s ease-out ;
}

h1 {
  background-repeat: no-repeat;
  background-size: 900px;
	color: transparent;
 	-moz-background-clip: text;
	-webkit-background-clip: text;
  background-clip: text;
	text-transform: uppercase;
	font-size: 120px;
  font-family: "Montserrat";
  flex-wrap: wrap;
}

@media (max-width: 460px) {
  h1 {
    font-size: 64px;
  }
}

@media (max-width: 670px) {
  .link {
    width: 100vw;
    justify-content: flex-start;
    text-align: start;
    padding: 0 0 10px 0;
  }
}

.links {
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.link {
  font-size: 1.5rem;
  z-index: 1;
  transition: font-size 300ms ease-in-out;
  margin: 0 30px 0 30px;
  text-decoration: unset;
  border: 0;
  cursor: pointer;
}

.link:hover {
  font-size: 2rem;
  transition: font-size 300ms ease-in-out;
}

.github, .linkedin, .facebook, .twitter, .mail, .download, .instagram{
  color: gray;
  text-shadow: 0px 0px 3px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.github:hover {
  color: #F5F5F5;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.linkedin:hover {
  color: #2867B2;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.facebook:hover {
  color: #4267B2;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.instagram:hover {
  color: #e1306c;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.twitter:hover {
  color: #1DA1F2;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.mail:hover {
  color: #8a90c7;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}

.download:hover {
  color: #ee609c;
  text-shadow: -15px 15px 10px #000;
  transition: color 300ms ease-in-out, font-size 300ms ease-in-out, text-shadow 300ms ease-in-out;
}


