* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
}
body {
  background: #1f1f1f;
  color: #e6e6e6;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 90%;
  max-width: 260px;
  height: auto;
  margin-bottom: 50px;
  margin-top: -40px;
}
.buttons {
  width: 90%;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.btn {
  text-decoration: none;
  color: #e6e6e6;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  transition: 0.15s;
}
.btn:hover {
  background: #333;
}
.showcase {

}
@media (max-width: 600px) {
  .buttons {
    grid-template-columns: 1fr;
  }
  .showcase {
    grid-column: auto;
    grid-row: auto;
  }
}