@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.navbar-menu-item a {
  padding: 8px;
}

a:hover {
  opacity: 0.65;
}

footer {
  box-sizing: border-box;
  background: #eee;
  text-align: center;
}

footer .container {
  padding: 8px 0;
}

footer p {
  opacity: 0.75;
  font-size: 14px;
}

p {
  font-size: 17px;
  line-height: 24px;
}

#navbar {
  width: 100%;
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(90deg, #000000ce 0%, #00000048 100%);
  backdrop-filter: blur(16px) brightness(0.5);
  color: #fff;
}

#navbar-inner.container {
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}

#navbar-mobile {
  z-index: 100;
  display: none;
  position: fixed;
  left: 0;
  top: 50px;
  width: 100%;
}

#navbar-mobile-menu {
  display: none;
  width: 100%;
  padding: 16px;
  backdrop-filter: blur(16px) brightness(0.5);
  background: #00000048;
  box-sizing: border-box;
}

.navbar-mobile-menu-item {
  display: block;
  padding: 12px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

#navbar-logo img {
  height: 24px;
}

#navbar-logo {
  font-size: 24px;
  font-weight: 700;
  align-items: center;
  display: flex;
  cursor: pointer;
  background-color: red;
  /* Create the gradient. */
  background-image: linear-gradient(45deg, #a5a2a2, #fff);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  transition: 0.25s ease;
}

#navbar-logo:hover {
  /* background-image: linear-gradient(45deg, #0800ff, #ff00e1); */
}

#navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#navbar-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-menu-item {
  margin-left: 24px;
  cursor: pointer;
}

#navbar-mobile-icon {
  display: none;
}

#menu-icon {
  width: 28px;
  padding: 4px;
  position: relative;
  top: 2px;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

#home {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container-full {
  min-height: 100vh;
  padding-top: 96px;
  box-sizing: border-box;
}

.section {
  background: linear-gradient(45deg, #000000 0%, #000000a0 100%);
  color: #fff;
}

h1.main {
  font-size: 88px;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 32px;
  padding-bottom: 16px;
  line-height: 34px;
}

#main-gradient {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, #000000 0%, #000000a0 100%);
  animation: gradient 5s ease-in-out infinite;
  backdrop-filter: grayscale(10%);
}

#container-main-inner {
  z-index: 10;
  position: absolute;
  color: #fff;
}

.btn-primary {
  display: inline-block;
  padding: 24px 32px;
  background: linear-gradient(90deg, #0800ff 0%, #ff00e1 100%);
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  box-sizing: border-box;
}

.btn-secondary {
  box-sizing: border-box;
  display: inline-block;
  padding: 24px 32px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  background: linear-gradient(90deg, #272727 0%, #626262 100%);
}

.btn-primary:hover {
  transform: scale(1.05);
  filter: hue-rotate(35deg);
}

.btn-secondary:hover {
  transform: scale(1.05);
  filter: brightness(1.25);
}

.grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#about {
  text-align: justify;
}

.example-container {
  width: 30%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  cursor: pointer;
}

.example-container:hover .cover {
  transform: scale(1.25);
}

.example-container .cover {
  transition: 0.25s ease;
  border-radius: 8px;
  width: 100%;
  height: 280px;
  background-position: center;
  background-size: cover;
}

.example-container .title {
  transition: 0.25s ease;
  text-align: center;
  color: #000;
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 12px 16px;
  font-weight: 800;
  border-radius: 22px;
}

.merch-container {
  width: 30%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  cursor: pointer;
}

.merch-container .cover {
  transition: 0.25s ease;
  width: 100%;
  height: 450px;
  background-position: center;
  background-size: cover;
}

.merch-container .image-container {
  border-radius: 8px;
  transition: 0.5s ease;
  height: 450px;
  display: flex;
  overflow-x: hidden;
}

#project-name {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 800;
}

.project-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}

.project-wrapper .left {
  border-radius: 16px;
  overflow: hidden;
}

.project-wrapper .right {
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  box-sizing: border-box;
}

.project-wrapper .el {
  width: 48%;
}

.repo-card {
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.25s ease;
  background: linear-gradient(90deg, #0800ff 0%, #ff00e1 100%);
}

.repo-card:hover {
  transform: scale(1.05);
  filter: hue-rotate(35deg);
}

.repo-card .header {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.repo-card .user {
  z-index: 10;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 35px;
}

.repo-card .user img {
  width: 100%;
  border-radius: 50%;
  border: solid 4px #fff;
}

.repo-card .title-container {
  position: relative;
  width: 100%;
  height: 200px;
  backdrop-filter: grayscale(1) blur(8px) brightness(0.5);
  border-radius: 12px;
  overflow: hidden;
}

.repo-card .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 5px;
}

.repo-card .action-label {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 8px;
}

#bg-img {
  display: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1200px) {
  #bg-video {
    display: none;
  }

  #bg-img {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  .example-container {
    width: 100%;
  }

  .merch-container {
    width: 100%;
  }

  .btn.extend {
    width: 100%;
    text-align: center;
  }

  #container-main-inner .main {
    font-size: 56px;
    text-align: center;
  }

  #container-main-inner .subtitle {
    font-size: 17px;
    text-align: center;
    line-height: 24px;
  }

  .project-wrapper .el {
    width: 100%;
  }

  #navbar-menu {
    display: none;
  }

  #navbar {
    height: 50px;
  }

  #navbar-mobile-icon {
    display: block;
  }

  #navbar-mobile {
    display: block;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  ::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  html, body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
}