@import "reset.css";
@import "typography.css";
@import "forms.css";

html,
body {
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.Page {
  padding: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.Page--memo {
  width: 36rem;
  margin: 0 auto;
}

.Page--center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;

  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100); /* workaround for mobile browsers */

  min-width: 100vw;
  max-width: 100%;
}
