* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "TBCX";
}

@font-face {
  font-family: "TBCX";
  src: url(../fonts/TBCXRegular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TBCX Medium";
  src: url(../fonts/TBCXMedium.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TBCX Bold";
  src: url(../fonts/TBCXBold.ttf);
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: #f3f5f6;
}

header {
  width: 100%;
  background-color: #fff;
  padding: 10px;
}

.logo {
  max-width: 1110px;
  margin: 0 auto;
}

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

.container {
  background-color: #fff;
  max-width: 632px;
  border-radius: 12px;
  margin: 100px auto;
  padding: 32px 24px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

h3,
p {
  text-align: center;
  line-height: 170%;
  text-decoration: unset;
  font-feature-settings: unset;
}

h3 {
  font-size: 16px;
  color: #141719;
}

p {
  font-size: 14px;
}

@media screen and (max-width: 599px) {
  main {
    padding: 24px 16px 30px;
  }
}
