@import url(./menu.css);
@import url(./sections.css);
@import url(./posts.css);
@import url(./form.css);
@import url(./buttons.css);

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

:root {
  --color-bg: #F5F5F5;
  --color-black: #141414;
  --color-font: #363636;
  --color-silver: #C0C0C0;
  --font-geist: 'Geist Sans', sans-serif;
}

@font-face {
  font-family: 'Geist Sans';
  src: url(../fonts/Geist/Geist-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Geist Sans';
  src: url(../fonts/Geist/Geist-Medium.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
}

html, body {
  background-color: var(--color-bg);
  color: var(--color-font);
}

.app {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1280px;
  width: 40%;
}

.phrase {
  font: 400 1rem var(--font-geist);
  line-height: 1.625rem;
}

.title {
  color: var(--color-black);
  font: 500 1rem var(--font-geist);
}