/* Variables, resets, root, html, body, * selector */
:root {
  --primary-color: #4B7BEC;
  --secondary-color: #FBC531;
  --accent-color: #26DE81;
  --background-color: #F8FAFF;
  --text-color: #2C3A47;
  --error-color: #FC5C65;
  --success-color: #20bf6b;
}

body {
  font-family: 'Baloo 2', cursive;
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  font-size: 16px;
  position: relative;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

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