body {
  background-color: #0d0d0d;
}

.container {
  display: flex;
  flex-direction: column;
  place-items: center;
  margin-top: 20vh;
}

.logo {
  width: 40vw;
  height: 40vw;
  max-width: 256px;
  max-height: 256px;
  min-height: 128px;
  min-width: 128px;
  transition: transform 200ms;
}

.logo:hover {
  transform: rotate(5deg) scale(1.1);
}

.text {
  margin: 0;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
}
