:root {
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: whitesmoke;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px;
  gap: 32px;
}

img {
  width: 400px;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

strong {
  font-size: x-large;
}
