@import './artists.css';
@import './gallery.css';
@import './artwork.css';
@import './header.css';
@import './language.css';

@font-face {
  font-family: Arthemis;
  src: url(../fonts/Arthemis.ttf);
}

:root {
  --black: #222;
  --white: #eee;
  --turqoise: #40e0d0;
}

html, body {
  background: var(--black);
  color: var(--white);
  font-size: 20px;
}

*, *:before, *:after {
  box-sizing: inherit;
  font-family: inherit;
  margin: 0;
  padding: 0;
}

.content { padding: 2.5em; }

.content p {
  margin-bottom: 1.5em;
  font-size: 1.5em;
  line-height: 1.25em;
  display: none;
}

body[lang=sv] .content p[lang=sv] { display: block; }
body[lang=en] .content p[lang=en] { display: block; }
body[lang=fr] .content p[lang=fr] { display: block; }

a { text-decoration: none; color: var(--turqoise); }



