@font-face {
  font-family: UCityProWeb;
  src:
    url('fonts/UCityProWeb-Regular.woff2') format('woff2'),
    url('fonts/UCityProWeb-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #EEEFE9;
  font-family: UCityProWeb, system-ui, -apple-system, sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.big-circle {
  position: absolute;
  top: 0px;
  left: -384px;
  width: 784px;
  height: 784px;
  background-color: #E8E7E2;
  border-radius: 50%;
  overflow: hidden;

  @media (min-width: 768px) {
    width: 2260px;
    height: 2260px;
    top: -265px;
    left: -1086px;
  }
  @media (min-width: 1440px) {
    top: -738px;
    left: -1068px;
  }
  @media (min-width: 1920px) {
    width: 3000px;
    height: 3000px;
    top: -970px;
    left: -1412px;
  }
}

.white-square {
  position: absolute;
  top: 131px;
  left: 0px;
  width: 1000px;
  height: 484px;
  background-color: #EEEFE9;

  @media (min-width: 768px) {
    width: 1500px;
    height: 1400px;
    top: 453px;
    left: 800px;
  }
  @media (min-width: 1920px) {
    width: 2000px;
    height: 1900px;
    left: 1100px
  }
}
.small-circle {
  position: absolute;
  top: 229px;
  left: 250px;
  width: 300px;
  height: 300px;
  background-color: #E8E7E2;
  border-radius: 50%;

  @media (min-width: 768px) {
    width: 854px;
    height: 864px;
    top: 720px;
    left: 724px;
  }
  @media (min-width: 1440px) {
    left: 708px;
  }
  @media (min-width: 1920px) {
    width: 1150px;
    height: 1150px;
    top: 948px;
    left: 923px;
  }
}

.black-square {
  position: absolute;
  top: 131px;
  left: 250px;
  width: 1000px;
  height: 484px;
  background-color: #E8E7E2;

  @media (min-width: 768px) {
    width: 1500px;
    height: 1400px;
    top: 188px;
    left: 500px;
  }
  @media (min-width: 1440px) {
    top: 0px
  }
}
/* Content */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  height: 100%;
  width: 100%;

  @media (min-width: 1024px) {
    padding: 32px;
  }
  @media (min-width: 1920px) {
  padding: 40px;
}
}

.logo-svg {
  @media (min-width: 1920px) {
    width: 96px;
    height: 48px;
  }
}

.content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-bottom: 25px;
}

h1 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  color: #1C1A19;
  letter-spacing: -0.02em;
  margin-bottom: 15px;

  @media (min-width: 1024px) {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.03em;
  }

  @media (min-width: 1920px) {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
}

p {
  font-size: 16px;
  line-height: 20px;
  color: #1C1A19;
  font-weight: 400;

  @media (min-width: 1024px) {
    font-size: 18px;
    line-height: 24px;
  }
  @media (min-width: 1920px) {
    font-size: 24px;
    line-height: 32px;
  }
}

