body {
  font-family: 'Raleway', sans-serif;
  background: #000020;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
}

.main {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 3em;
}

.title {
  font-size: 3em;
  animation: 5s infinite blink;
  margin: 8px;
}

.pages {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@keyframes blink {
  from {
    opacity: 0;
  }
  
  20% {
    opacity: 1;
  }
  
  90% {
    opacity: 1;
  }
  
  to {
    opacity: 0;
  }
}

.repos {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.repo:nth-child(odd) {
  align-self: flex-start;
}

.repo:nth-child(even) {
  align-self: flex-end;
}

.repo {
  margin: 10px;
  max-width: 60%;
}

.repo p {
  color: #eee;
}

#french-warning {
  position: absolute;
  top: 100%;
  margin: 10px;
  text-align: center;
  transition: .3s all;
}

.french:not(:hover) ~ #french-warning {
  opacity: 0;
}