* {
  @include border-box;
}

body {
  font-family: $normal;
  color: $text;
  font-size: $basefontsize;
  padding: 5px 0;
  background: $bg_white;

  @media screen and (max-width: $break_medium - 1) {
    &.menu-open {
      overflow: hidden;
    }
  }
}

.page_background {
  background-image: url(img/paragraph.svg), linear-gradient(to bottom, #fcf4e6, #f7e8e7);
  background-attachment: scroll; //bitte mal ausprobieren, oder: fixed, fixed?
  background-position: bottom left, center top;
  background-repeat: no-repeat;
  padding-bottom: 3*$gutter;
}

p {
  margin-bottom: 7px;

  &.topic {
    display: block;
    background: $bright;
    font-size: 1.5em;
    color: $color-accent-contrast;
    padding: 5px 10px;
    font-style: italic;
    margin: 0;

    + h2,
    + h3 {
      margin-top: 10px;
    }

    a {
      @extend %link-underlining;
    }
  }
}

strong {
  font-weight: bold;
}

.extra_link a,
a.button {
  @extend %button;
}

a.secondary_button {
  @extend %secondary_button;
}

.only_small {
  @media screen and (min-width: $break_medium) {
    display: none !important;
  }
}

.only_medium {
  @media screen and (min-width: $break_wide) {
    display: none !important;
  }
}

.wwe_form_submit {
  @extend %button;
  width: $column_width;
}

%form_field {
  border: 1px solid $grey;
  padding: 0 7px;
  line-height: 30px;
  min-height: 32px; // IE
  background-color: $bright;
  color: $text;
  display: inline-block;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .5) inset;
  width: 100%;
}
