@font-face {
  font-family: 'TT Commons Pro Trial Variable';
  src: url('../fonts/TTCommonsPro-Variable.woff2') format('woff2'),
       url('../fonts/TTCommonsPro-Variable.ttf') format('truetype'),
       url('../fonts/TTCommonsProTrial-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Monsieur La Doulaise';
  src: url('../fonts/MonsieurLaDoulaise-Regular.woff2') format('woff2'),
       url('../fonts/MonsieurLaDoulaise-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white:        #ffffff;
  --bg-section:   #f1f1f1;
  --bg-open:      #f4f4f6;
  --bg-button:    #e3e5e7;
  --bg-expand:    #f4f4f6;
  --accent:       #FF47E9;
  --text:         #000000;
  --text-grey:    rgba(0, 0, 0, 0.3);
  --border-light: #e4e7e7;

  --font-main:    'TT Commons Pro Trial Variable', 'TT Commons Pro', system-ui, sans-serif;
  --font-logo:    'Monsieur La Doulaise', cursive;

  --panel-width:  240px;
  --panel-min:    240px;
  --panel-pad:    12px;

  --mark-width:   32px;

  --section-collapsed: 56px;

  --section-collapsed-h: 48px;

  --infobar-h: 104px;

  --transition: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
}

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

.layout {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
