body {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.root {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  bottom: 100px;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
  gap: 8px;
}

.top-block {
  background-color: var(--lilac);
  width: 166px;
  height: 166px;
  box-sizing: border-box;
  padding: 8px;
}

.bottom-block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;

  p {
    width: 50px;
    height: 50px;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lilac);
    font-weight: bold;
    font-size: small;
  }
}

.block-grid {
  width: 166px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0px;
}

.block-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;

  a {
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lilac);
    height: 21px;
    width: 21px;
    transition: var(--tr-speed);
  }

  a:hover {
    background-color: var(--lavender);
  }
}
