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

.fadeIn {
  -webkit-animation: fadeIn 1s ease-in-out;
  -moz-animation: fadeIn 1s ease-in-out;
  -o-animation: fadeIn 1s ease-in-out;
  animation: fadeIn 1s ease-in-out;
}

body {
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

body main  {
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;

  padding: 0 30px 0;
}

.profile {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  margin-bottom: 20px;
  border: 3px solid #1ed760;
  background: #1ed760;
}

.description {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
}

.link_container {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #191414;
  max-width: 330px;
  width: 100%;
  transition: background 0.5s;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 340px; height: auto;
  border: solid 1px #191414;
  background-color: #54E85D;
  box-shadow: 10px 10px   rgba(0,0,0,0.8);
  -moz-box-shadow: 10px 10px   rgba(0,0,0,0.8);
  -webkit-box-shadow: 10px 10px   rgba(0,0,0,0.8);
  -o-box-shadow: 10px 10px   rgba(0,0,0,0.8);
  border-radius: 10px;
}


.link_container + .link_container {
  margin-top: 30px;
}

.logo {
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  margin-bottom: 10px;
  margin-top: 10px;
  border: 2px solid #54E85D;
  background: #54E85D;
  
}

.link_container:hover {
  background: #54E85D;
}

body footer {
  font-size: 20px;
  font-weight: 500;

  display: flex;
  flex-direction: column;
  align-items: center;
}

body footer p {
  margin-top: 16px;
  font-size: 16px;
  align-items: center;
}

body footer a {
  text-decoration: none;
  color: #191414;
  transition: color 0.3s;
  align-items: center;
}

body footer a:hover {
  color: #54E85D;
}
html {
  height: 170vh;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom right,#90f24f,#ceff62);
  color: ffffff;
}

body, input, button {
    font-family: 'Alata';
    
 } 

button {
  cursor: pointer;
}
