@use '../abstracts/variables' as *;

body {
  position: relative;
  background-color: $color-bg-body;
  color: $color-text-base;
  font-size: 16px;
}

a {
  color: $color-main;
  text-decoration: none;

  &:hover:not(.button) {
    text-decoration: underline;
  }
}

p {
  margin-bottom: 1rem;

    &:last-child {
        margin-bottom: 0;
    }
}

p:last-child {
    margin-bottom: 0;
}