* {
  box-sizing: border-box;
}
@font-face {
  font-family: "Circular";
  src: url("./assets/fonts/CircularXXWeb-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Circular";
  src: url("./assets/fonts/CircularXXWeb-Regular.woff2") format("woff2");
  font-weight: 450;
  font-style: normal;
}
body {
  font-family: "Circular", sans-serif;
  margin: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  padding: 24px;
  overflow: hidden;
}
main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
img {
  max-width: 450px;
  width: 100%;
}
h1 {
  font-weight: 500;
  font-size: 40px;
  color: #262626;
  line-height: 125%;
}
p {
  color: #595959;
  line-height: 150%;
  font-size: 18px;
  font-weight: 450;
  white-space: pre-line;
}