@font-face {
  font-family: "Sf compact display";
  src: url("./fonts/sf-compact-display-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Sf compact display";
  src: url("./fonts/sf-compact-display-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Sf compact display";
  src: url("./fonts/sf-compact-display-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Sf compact display";
  src: url("./fonts/sf-compact-display-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Sf pro rounded";
  src: url("./fonts/sf-pro-rounded-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

:root {
  --bg: #f2f2f6;
  --card: #ffffff;
  --text: #232323;
  --muted: #6e6e73;
  --border: #d1d5db;
  --card-shadow: 0 24px 60px rgba(35, 35, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Sf compact display", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.content{
  padding-bottom: 100px;
}
