:root {
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 5vmin;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  width: min(60vw, 60vh, 700px);
  height: auto;
}
