@media screen and (min-width: 1024px) {
  div.footer { font-size: 1.25rem; }
  div.button { font-size: 3rem; border-radius: 1.5rem;}
  div.header > div.flags { font-size: 2rem; }
  div.header > a > div.title { font-size: 8rem; }
  div.header > div.subtitle { font-size: 2rem; }
  body { max-width: 1280px; margin:auto; background-color: darkgray; padding-left: 10px; padding-right: 10px; }
}

@media screen and (max-width: 1024px) {
  div.purpose { font-size: 4vw; }
  div.purposeitem { font-size: 3vw; }
  div.footer { font-size: 2vw; }
  div.button, input[type=submit] { font-size: 5vw; border-radius: 3vw; padding: 4vw!important;}
  div.header > div.flags { font-size: 6vw; }
  div.header > a > div.title { font-size: 20vw; }
  div.header > div.subtitle { font-size: 5vw; }
  body { width: 100%; margin:0; background-color: var(--pink); padding: 0; }
  div.header > div.flags > a:first-child { margin-right: 1.5vw; }
}

:root {
  --pink: #ff1a8c;
  --gray: #47476b;
  --green: #69e2a6;
  --white: white;
}

html {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

div {
  overflow: auto;
  background-color: var(--pink);
  color: var(--gray);
}

div.header {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

div.header > a {
  text-decoration: none;
}

div.header > a > div.title {
  font-family: 'pornstarregular';
  display: inline;
}

div.header > div.subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

div.header > div.flags {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  margin-right: cacl(100%-1280px/2);
}
div.footer {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
}

div.header > div.flags > a,
div.footer > a {
  text-decoration: none;
  color: var(--gray);
}

div.text {
  max-width: 800px;
  margin: auto;
  padding: 10px;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }

a { text-decoration: none; }
a:visited { color: inherit; }


div.button, input[type=submit] {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  background-color: var(--green);
  box-shadow: 5px 5px 5px var(--gray);
  cursor: pointer ;
}

