@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300&display=swap");
html,
body {
  margin: 0px;
  overflow: hidden;
  background: rgb(4, 4, 4);

  color: white;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}

.info {
  position: absolute;
  bottom: 5%;
  left: 0px;

  padding: 20px;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.subheading {
  opacity: 0.4;
}

.name {
  margin-left: 5px;
  margin-right: 5px;
}

.date {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 5px;
}

.desc {
}

/** Blue link **/
.blue-link {
  color: rgba(116, 185, 255, 1);
  text-decoration: none;
  position: relative;
}

.blue-link:after {
  content: "";

  width: 100%;
  position: absolute;
  left: 0;
  bottom: 1px;

  border-width: 0 0 1.5px;
  border-style: solid;
  border-color: rgba(116, 185, 255, 0);

  transition: 0.2s;
}

.blue-link:hover {
  color: rgba(116, 185, 255, 1);
}

.blue-link:hover:after {
  border-color: rgba(255, 255, 255, 0.2);
}
