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

html {
  font-size: 14pt;
}

body {
  display: grid;
  place-items: center;

  width: 100%;
  min-height: 100vh;

  font-family: Arial, Helvetica, sans-serif;

  background-color: #eaeaea;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23aec3a7' fill-opacity='0.2'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  user-select: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: min(500px, 100%);

  padding: 1rem;

  background-color: #fff;
  border-radius: 16px;
  border: 2px solid black;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.315);
}

h1 {
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  color: #f90909;
  margin-bottom: 0.5rem;
}

img {
  width: 200px;
}


