:root {
  --overlay-color: rgba(241, 90, 36, 0.50);
  --text-color: #ffffff;
  --bg-color: #000000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  overflow: hidden;
  color: var(--text-color);
  background: var(--bg-color);
  font-family: "Encode Sans Semi Condensed", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(var(--overlay-color), var(--overlay-color)), url("../../assets/background.jpg") center / cover no-repeat;
  z-index: -1;
}

.app {
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
