* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2eeeb;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The container centres the text; the logo is pulled out
   absolutely to the left so it doesn't offset the centring */
.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  right: calc(100% + 16px);
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #4a4540;
  letter-spacing: 0.05em;
  line-height: 1;
}
