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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--theme-white);
  color: var(--text-body-010);
  -webkit-font-smoothing: antialiased;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--theme-white);
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-300);
  border-bottom: 1px solid var(--border-primary);
}

.header__logo {
  height: var(--size-500);
  width: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.scroll {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 500px;
  padding: var(--spacing-300);
}

.download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--spacing-500);
  margin-inline: auto;
}
