body {
  background-color: #013F79;
  margin: 0;
}

.main-container {
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  color: white;
}

.button-container {
  display: flex;
  justify-content: center;
}

.button-language {
  /*Button properties*/
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  border-radius: 80px;
  background-color: transparent;
  padding: 10px;

  /*Text properties*/
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
  line-height: 2px;
  letter-spacing: 0em;

  width: 150px;
  margin-left: 5px;
  margin-right: 5px;
}

.button-language img {
  width: 24px;
  margin-right: 10px;
}

.credits {
  z-index: 401;
  position: fixed;
  text-align: center;
  color : white;
  bottom: 0;

  /* Align in the center of the page too */
  left: 50%;
  transform: translate(-50%, 0);

  margin-bottom: 10px;
}

a:link{
  color: white;
}