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

@font-face {
  font-family: "Wix Madefor Display";
  src: url("/fonts/WixMadeforDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background-color: #f7f8fa;
}

.header {
  background-color: #fff;
  padding: 25px 48px;
  box-shadow: 0px 1px 4px 0px rgba(160, 163, 195, 0.2);
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.title {
  font-family: Wix Madefor Display;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-top: 60px;
}

.description {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  max-width: 620px;
  margin-top: 20px;
}
