@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/* The following line is used to measure usage of this code. You can remove it if you want. 
@import url("https://px.animaapp.com/654c0a8fcdcbf325f2fcd68d.654c0a90cdcbf325f2fcd690.poluGwj.hcp.png");
*/
@font-face {
  font-family: "Gotham-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gotham Medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Book";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gotham Book.otf") format("opentype");
}


.screen a {
  text-decoration: none;
}

.container-center-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
  width: 100%;
}

.container-center-horizontal > * {
  flex-shrink: 0;
  pointer-events: auto;
}

* {
  box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  width: 10px !important;
}

::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
  background-color: transparent !important;
  -webkit-border-radius: 10px !important;
  border-radius: 10px !important;
}

::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px !important;
  border-radius: 10px !important;
  background: var(--pizza) !important; 
}
textarea::-webkit-scrollbar {
  width: 4px !important;
}


body {
  scrollbar-width: thin;
  scrollbar-color: var(--pizza) transparent;
}