@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/Cormorant/static/Cormorant-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/Cormorant/static/Cormorant-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter/inter-variable.ttf");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter/inter-italic-variable.ttf");
  font-weight: 100 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #030405;
  color: #ffffff;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

::selection {
  background: rgba(220, 185, 120, 0.35);
  color: #ffffff;
}