@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Noto+Sans+Georgian:wght@100..900&display=swap");

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

:root {
  --primary-color: linear-gradient(90deg, #ef6619 0%, #e8052d 100%);
  --Georgian: "Noto Sans Georgian", sans-serif;
}

body {
  font-family: var(--Georgian);
  background-color: #efede8;
  font-size: 1.25rem;
  color: #000;
}

.h1center {
  display: flex;
  justify-content: center;
  align-items: center;
}
