body {
  background-color: black;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.links {
  display: flex;
  gap: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: end;
}

img {
  width: 200px;
}

button {
  background-color: white;
  border: none;
  padding: 10px 10px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
}

@media (max-width: 1000px) {
  .links {
    flex-direction: column;
    gap: 20px;
  }
}
