@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);

* {
  margin: 0;
  padding: 0;
}
body {
  background-color: whitesmoke;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
}
main {
  display: none;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
.profile {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile_photo {
  position: relative;
  width: 75%;
  height: 75%;
  overflow: hidden;
  border-radius: 50%;
}
.profile_photo,
.profile_name,
.profile_desc,
.github_link {
  margin-bottom: 5px;
  text-align: center;
}
.profile_desc {
  font-size: 20px;
  color: #666;
}
.github_link {
  color: rgb(91, 192, 158);
  text-decoration: none;
  font-size: 20px;
}

.info_icon {
  position: absolute;
  color: rgb(90, 195, 195);
  top: 10px;
  left: 10px;  
  font-size: 30px;
  cursor: pointer;
}
.info_icon:hover {
  color: rgb(90, 195, 195);
}
.noscript{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  text-align: center;
  font-size: 20px;
  color: #666;
}
.fa-exclamation-triangle{
  color: rgb(235, 185, 23);
}