/* @font-face {
  font-family: "Campton";
  src: url("../assets/campton/Campton-Book.otf");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Campton";
  src: url("../assets/campton/Campton-Medium.otf");
  font-style: bold;
  font-weight: 500;
} */
@font-face {
  font-family: "DM Sans";
  src: url("../assets/dmsans/DMSans-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "DM Sans";
  src: url("../assets/dmsans/DMSans-Medium.ttf");
  font-style: bold;
  font-weight: 500;
} 

/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap");\ */
/* @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); */

html,
body {
  position: relative;
  width: 100%;
  /* height: 100%; */
  background-color: var(--background);
  color: var(--normal-text);
}

body {
  margin: 0;
  padding: var(--body-padding);
  box-sizing: border-box;
}

* {
  font-family: "DM Sans", sans-serif;
  user-select: none;
}

main {
  height: 100%;
  width: 100%;
  margin: auto;
  max-width: 800px;
}

.v-center {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.h-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: center; */
}

.v-align {
  display: flex;
  flex-direction: column;
}

.h-align {
  display: flex;
  flex-direction: row;
}

@media (min-width: 700px) {
  .pointer {
    cursor: pointer;
  }
}

.po-rel {
  position: relative;
}

.po-abs {
  position: absolute;
}

.po-fix {
  position: fixed;
}

.no-overflow {
  overflow: hidden;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.selectable {
  user-select: text;
}

.hover-brightness:hover {
  filter: brightness(130%);
}

@keyframes hover-border {
  from {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2);
  }
  to {
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
  }
}
