@charset "UTF-8";

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-SemiBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-ExtraBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: 'Figtree';
  src: url('/static/font/figtree/Figtree-Black.ttf') format('truetype');
  font-style: normal;
  font-weight: 900;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    background-color: #faf9f3;
    color: #191919;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    color: grey;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: green;
}

img {
    max-width: 100%;
    height: auto;
}