* {
  /* text montserrat black with white borders */
  font-family: 'Montserrat', sans-serif;
  color: rgb(178, 203, 246);
  text-shadow: 1px 1px 2px rgb(130, 73, 169);
}

.container {
  z-index: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container .info>h1,
h2 {
  margin: 4px;
}

.container h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}

.container h2 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.container>.anchors {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.container>.anchors>a {
  margin: 10px;
  width: 50px;
  height: 50px;
}

#github {
  margin: 10px 5px;
}

.container>.anchors>a>img {
  width: 50px;
  height: 50px;
}

.anchors img {
  transition: transform 0.2s ease-in-out;
}

.anchors img:hover {
  transform: scale(1.2);
}

.container>.credits {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .container {
    justify-content: center;
  }

  .credits {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
}

.credits>p {
  margin: 2.5px;
}

/* hide scrollbars */
::-webkit-scrollbar {
  display: none;
}