@font-face {
  font-family: 'zodiak';
  src: url('fonts/zodiak.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
}

:root {
  --color-primary: #21263B;
  --color-secondary: #BA8B5B;
  --color-tertiary: #0F121E;
}

body {
  margin: 0;
  font-family: 'zodiak', sans-serif;
  font-weight: 300;
  line-height: normal;
  color: #fff;
  background: var(--color-primary) url('./shape.png');
  background-size: 850px;
}

h1 {
  font-size: clamp(1.2rem, -1.05rem + 7.2vw, 1.8rem);
}

.container {
  display: grid;
  place-items: center;
  height: 100vh;
}

.item {
  padding: 30px;
  max-width: 700px;
  text-align: center;
}

.content {
  margin: 60px 0 0;
}

.logo {
  width: 345px;
  height: auto;
  max-width: 80%;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.content {
  position: relative;
}

/* .content::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  color: var(--color-secondary);
  border: 3px solid;
  border-radius: 10px;
  background: var(--color-secondary);
} */

.content > span {
  font-size: clamp(1.2rem, -1.05rem + 7.2vw, 1.5rem);
  font-weight: 540;
  color: var(--color-secondary);
}

.block,
.block-inner {
  display: block;
  margin: 20px 0;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-inner {
  max-width: 310px;
}

.block-inner > span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-secondary);
}

.rounded-shape {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at top left,transparent 500px, var(--color-tertiary) 501px);
}

@media (max-width: 980px) {
  .rounded-shape {
      width: 0;
      height: 0;
  }
}