* {
  box-sizing: border-box;
}

body,
html {
  min-height: 100%;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

@font-face {
  font-family: Fredoka-Medium;
  src: url("/fonts/Fredoka-Medium.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: Anton-Regular;
  src: url("/fonts/Anton-Regular.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: Rajdhani-SemiBold;
  src: url("/fonts/Rajdhani-SemiBold.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: AcmeRegular;
  src: url("/fonts/Acme-Regular.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: InterLight;
  src: url("/fonts/Inter-Light.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: InterLight;
  src: url("/fonts/Inter-Regular.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: InterThin;
  src: url("/fonts/Inter-Thin.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: InterBold;
  src: url("/fonts/Inter-Bold.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: InterMedium;
  src: url("/fonts/Inter-Medium.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: InterRegular;
  src: url("/fonts/Inter-Regular.ttf");
  format: ("ttf");
  font-display: swap;
}

@font-face {
  font-family: SourceCodeProBold;
  src: url("/fonts/SourceCodePro-Bold.ttf");
  format: ("ttf");
  font-display: swap;
}

br {
  width: 100%;
  border: 1px solid red;
  display: inline-block;
}

/* img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: contain;
} */

::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
  background: rgba(23, 27, 36, 0.41); /* color of the tracking area */
  filter: blur(4px);
}

::-webkit-scrollbar-track {
  background: rgba(23, 27, 36, 0.41); /* color of the tracking area */
  filter: blur(4px);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(39, 45, 58); /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid transparent; /* creates padding around scroll thumb */
}

[data-linkArrow="true"] {
  transition: transform 250ms;
  position: relative;
}

[data-linkArrow="true"]::after {
  content: "\2197";
  height: 15px;
  width: 15px;
  margin-left: 5px;
  transition: transform 250ms ease;
  transform: translate(0, 0);
  position: absolute;
}

a:hover [data-linkArrow="true"]::after {
  content: "\2197";
  transform: translate(5px, -5px);
}

.tag {
  background-color: #25333b;
  color: #79a1ba;
  border: 1px solid #35464f;
  padding: 5px;
  border-radius: 5px;
  margin: 5px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: SourceCodeProBold;
  width: max-content;
}

[data-tag="css"].tag::before {
  content: image-set("../svg/css3.svg" 1x);
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}

[data-tag="mui"].tag::before {
  content: image-set("../svg/mui.svg" 1x);
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}

[data-tag="react"].tag::before {
  content: image-set("../svg/react.svg" 1x);
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}

[data-tag="react-native"].tag::before {
  content: image-set("../svg/react.svg" 1x);
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}

[data-tag="html"].tag::before {
  content: image-set("../svg/html5.svg" 1x);
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}

[data-tag="php"].tag::before {
  content: image-set("../svg/php.svg" 1x);
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}
[data-tag="javascript"].tag::before {
  content: image-set("../svg/js.svg" 1x);
  overflow: hidden;
  border-radius: 2px;
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}
[data-tag="mysql"].tag::before {
  content: image-set("../svg/mysql.svg" 1x);
  overflow: hidden;
  border-radius: 2px;
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}
