:root {
  --orange: #ee772f;
  --gul: #f7c02d;
  --sort: #000;
  --hvid: #FFF;
  --menu-header-size: 8vw;
  --menu-header-lineheight: 1;
  --menu-font-size: 16px;
  --menu-justify: flex-start;
  --menu-pad-vert: 1em;
  --menu-pad-hori: 2em;
  --menu-gap: 2em;
  --main-width: 96vw;
  --article-width: min(600px, calc(96vw - 2 * 2em));
  --aside-width: calc(var(--main-width) - var(--article-width) - var(--menu-pad-hori));
  --aside-display: flex block;
}

@media only screen and (max-width: 700px) {
  :root {
    --menu-header-size: 15vw;
    --menu-header-lineheight: 0.8;
    --menu-font-size: 12px;
    --menu-justify: center;
    --menu-pad-hori: 0.5em;
    --menu-gap: 0.5em;
    --aside-display: none;
  }

  .de {
    display: none;
  }

  header h1 {
    padding-left: calc(var(--menu-pad-hori) / 2);
  }
}

/*
		@font-face {
			font-family: 'Readex Pro';
			font-style: normal;
			font-weight: 160 700;
			font-display: swap;
			src: url(https://fonts.gstatic.com/s/readexpro/v26/SLXYc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2Iw-ZEzehiB9Q1U.woff2) format('woff2');
			unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
		}*/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  background: var(--orange);
  color: var(--hvid);
  font-family: "Readex Pro", serif;
}

body {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: flex-start;
}

header {
  width: 96vw;
  padding: 2vw 2vw 0 2vw;
  display: flex;
  flex-direction: column;
}

header h1 {
  display: block;
  font-size: var(--menu-header-size);
  font-weight: 900;
  line-height: var(--menu-header-lineheight);
  letter-spacing: -0.06em;
}

header h1 span.tag {
  color: var(--sort);
}

header ul {
  display: flex;
  flex-direction: row;
  justify-content: var(--menu-justify);
  gap: var(--menu-gap);
  list-style: none;
  background: var(--sort);
  font-size: var(--menu-font-size);
  color: var(--hvid);
  text-transform: uppercase;
}

header ul li a {
  display: block;
  padding: var(--menu-pad-vert) var(--menu-pad-hori);
}

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

a:hover {
  color: var(--gul);
}

p {
  font-weight: 300;
  margin-bottom: 1em;
  line-height: 1.4;
}

article {
  width: var(--article-width);
  background: var(--hvid);
  color: var(--sort);
  padding: 2em;
}

main {
  width: var(--main-width);
  margin: 2vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: var(--menu-pad-hori);
}

main h1 {
  margin-bottom: 0.5em;
  border-bottom: 2px solid var(--orange);
}

main a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--orange);
}

aside {
  display: var(--aside-display);
  width: var(--aside-width);
  height: 500px;
  background: var(--gul) url('../imgs/kandidater.jpg') no-repeat center;
  background-size: cover;
  justify-content: end;
  align-items: flex-end;
}
aside span{
  background: #000; padding: 0.2em; margin:0.5em 1em; font-size:0.7em;
}

form {
	display: flex;
	flex-direction: column;
	gap: var(--menu-pad-vert);
}
form input, form textarea, form button {
  font-family: "Readex Pro";
  font-size: 1em;
  padding: 0.5em;
  border: 1px solid var(--orange);
}
form button {
  background-color: var(--orange);
  color: var(--hvid);
  text-align: right;
}
form button:hover {
  background-color: var(--gul);
  color: var(--sort);
  cursor: pointer;
  border-color: var(--sort);
}