@font-face {
  font-family: "Bai Jamjuree";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/assets/static/fonts/bai-jamjuree-v4-latin-regular.woff2") format("woff2"), url("/assets/static/fonts/bai-jamjuree-v4-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/assets/static/fonts/bai-jamjuree-v4-latin-600.woff2") format("woff2"), url("/assets/static/fonts/bai-jamjuree-v4-latin-600.woff") format("woff");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/assets/static/fonts/bai-jamjuree-v4-latin-700.woff2") format("woff2"), url("/assets/static/fonts/bai-jamjuree-v4-latin-700.woff") format("woff");
}
html {
  box-sizing: border-box;
  scrollbar-width: thin;
  -webkit-tap-highlight-color: transparent;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font: normal 14px/1.4 "Bai Jamjuree", Arial, system-ui, -apple-system;
  font-weight: 600;
  color: #FFF;
  max-width: 1300px;
  margin: 25px auto;
  padding: 25px;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #FFF;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #48F0E5;
  outline: none;
  text-decoration: none;
}

a:active {
  color: #48F0E5;
}

p {
  padding: 0;
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 18px;
}

.imgs {
  font-size: 16px;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-template-rows: masonry;
}

header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 75px;
}
.img {
  margin: 0 auto;
}
.img .img-meta {
  font-size: 14px;
  text-transform: uppercase;
}
.img .img-meta h2 {
  font-weight: 700;
  margin-bottom: 10px;
}
.img .img-content img, .img .img-content video {
  max-width: 255px;
}
.img .img-content-big {
  margin-top: 20px;
}
.img .img-content-big img, .img .img-content-big video {
  max-width: 765px;
}
footer {
  margin-top: 75px;
}

::-moz-selection {
  background: #1CC8CA;
  color: #FFF;
}

::selection {
  background: #1CC8CA;
  color: #FFF;
}

#user:after {
  content: " _";
  -webkit-animation: cursor 1s infinite;
          animation: cursor 1s infinite;
}

@-webkit-keyframes cursor {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cursor {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}