* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222220;
  font-family: "Montserrat", sans-serif;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.brand__logo {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  opacity: 0.8;
  will-change: transform;
}

.brand__name {
  margin: 0;
  color: #ffffff;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.8;
  will-change: transform;
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 48px;
  }
}
