@font-face {
  font-family: 'Suisse';
  src: url('Suisse Intl/Suisse Int_l Regular/SuisseIntl-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('Suisse Intl/Suisse Int_l Regular Italic/SuisseIntl-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Suisse';
  src: url('Suisse Intl/Suisse Int_l Medium/SuisseIntl-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('Suisse Intl/Suisse Int_l Semibold/SuisseIntl-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('Suisse Intl/Suisse Int_l Bold/SuisseIntl-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('Suisse Intl/Suisse Int_l Bold Italic/SuisseIntl-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

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

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

body {
  min-height: 100vh;
  background-color: #153A1B;
  color: #1DD21A;
  font-family: Suisse, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.75rem 4rem;
}

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

main{
  width: 100%;
}

.logo-wrap,.manifesto {
  width: 880px;
}

.manifesto {
  max-width: 100%;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 auto;
  display: block;
}

.manifesto p {
  margin: 0 0 1rem;
}

.manifesto p.question {
  margin-top: 4rem;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

@media (min-width: 900px) {
  .page {
    padding-top: 3.5rem;
  }

  .header {
    margin-bottom: 3.5rem;
  }

  .manifesto {
    text-align: justify;
  }
}


