@font-face {
  font-family: SegoeUIVariable;
  src: url("fonts/Segoe-UI-Variable-Static-Display.ttf");
}

@font-face {
  font-family: SegoeUIVariableBold;
  src: url("fonts/Segoe-UI-Variable-Static-Display-Bold.ttf");
}

@font-face {
  font-family: SegoeUIVariableLight;
  src: url("fonts/Segoe-UI-Variable-Static-Display-Light.ttf");
}

@font-face {
  font-family: SegoeUIVariableSemibold;
  src: url("fonts/Segoe-UI-Variable-Static-Display-Semibold.ttf");
}

@font-face {
  font-family: SegoeUIVariableSemilight;
  src: url("fonts/Segoe-UI-Variable-Static-Display-Semilight.ttf");
}

html,
body {
  color-scheme: dark;
  font-family: SegoeUIVariable;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 3px;
  height: 10px;
  transition: all 500ms;
}

::-webkit-scrollbar-thumb {
  background: rgb(180, 180, 180);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(150, 150, 150);
}

.navContainer {
  position: fixed;
  width: 99%;
  top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 10000;
  background: rgba(25, 25, 25, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  animation: slideDown 500ms;
}

ul.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  text-align: center;
  align-items: center;
  top: 0;
  width: 100%;
  transition: all 500ms;
}

ul.navbar li.nav-item.left {
  float: left;
  text-align: center;
  padding: 10px;
  vertical-align: middle;
  line-height: normal;
  transition: all 500ms;
}

ul.navbar li.nav-item.right {
  float: right;
  text-align: center;
  padding: 10px;
  vertical-align: middle;
  line-height: normal;
  transition: all 500ms;
}

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

a.underline {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 20px;
  vertical-align: middle;
  line-height: normal;
}

a.underline::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.45s cubic-bezier(0.08, 0.82, 0.17, 1);
}

a.underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.button {
  background-color: rgba(37, 37, 37, 0.8);
  color: white;
  border-radius: 5px;
  padding: 10px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 15px;
  border: 1px solid rgb(100, 100, 100);
  font-family: SegoeUIVariableSemibold;
  cursor: pointer;
  transition: all 200ms;
  backdrop-filter: blur(50px);
}

button.button:active {
  background-color: rgba(37, 37, 37, 0.8);
  transform: scale(0.95);
  box-shadow: none;
}

.bold {
  font-family: SegoeUIVariableBold;
  font-size: 20px;
}

.semibold {
  font-family: SegoeUIVariableSemibold;
  font-size: 18px;
}

.vcenter {
  position: absolute;
  top: 50%;
  margin-top: -5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  animation: slideLeft 500ms;
}

.title {
  font-family: SegoeUIVariableSemibold;
  font-size: 30px;
  margin: 0;
}

.subtitle {
  font-family: SegoeUIVariable;
  font-size: 20px;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000000001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn cubic-bezier(0.08, 0.82, 0.17, 1) 500ms;
}

/* Modal Content/Box */
.modal-content {
  background: rgba(14, 14, 14, 0.8);
  animation: scaleUp cubic-bezier(0.68, -0.55, 0.27, 1.55) 500ms;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  border: 1px rgba(100, 100, 100, 0.8) solid;
  width: 50%;
  backdrop-filter: blur(20px);
  transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 0.5s;
  z-index: 40000000000000000000;
  overflow: scroll;
}

.modal-content.img {
  padding-top: 20px;
}

.modal-content img.modal-image {
  position: relative;
  top: 0;
  left: 0;
  right: 10%;
  max-height: 20%;
  max-width: 100%;
  margin-top: -8%;
  z-index: -100;
  border-radius: 8px;
}

/* The Close Button */
.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 4000000000000;
}

.close.img {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 40000000000000;
  margin-right: 30px;
  margin-top: 10px;
}

.modal.active {
  display: block;
  animation: fadeIn 500ms;
}

.clipped {
  overflow: hidden;
}

input {
  background-color: rgba(37, 37, 37, 0.8);
  color: white;
  border-radius: 5px;
  border: 1px solid rgba(100, 100, 100, 0.8);
  padding: 5px;
  font-family: SegoeUIVariable;
}

#showMore {
  display: none;
}
@media only screen and (max-width: 600px) {
  .modal-content {
    background: rgba(0, 0, 0, 0.85);
    animation: slideDown cubic-bezier(0.68, -0.55, 0.27, 1.55) 500ms;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px rgb(25, 25, 25) solid;
    width: 80%;
    height: 300%;
    overflow-x: hidden;
    z-index: 40000000000000000000;
    backdrop-filter: blur(0px);
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
  }

  .responsive {
    display: none;
  }

  .vcenter {
    position: absolute;
    top: 30%;
    margin-top: -5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: all 500ms;
    animation: slideLeft 500ms;
  }

  ul.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #showMore {
    display: block;
  }
}

img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 500ms;
}

.cards-item {
  display: flex;
  padding: 1rem;
  transition: all 500ms;
}

@media (min-width: 40rem) {
  .cards-item {
    width: 50%;
    transition: all 500ms;
  }
}

@media (min-width: 56rem) {
  .cards-item {
    width: 25%;
    transition: all 500ms;
  }
}

ul.cards {
  justify-content: center;
  transition: all 500ms;
  transition-delay: 200ms;
}

.card {
  border: 1px solid rgba(100, 100, 100, 0.8);
  background-color: black;
  border-radius: 5px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all cubic-bezier(0.65, 0.05, 0.36, 1) 300ms;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.card:active {
  transform: scale(0.95);
}

.card-content {
  padding: 1rem;
  background: rgba(30, 30, 30, 0.8);
  transition: all 500ms;
}

.card-content:hover {
  background-color: rgba(50, 50, 50, 0.8);
}

.card-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: SegoeUIVariableSemibold;
  margin: 0px;
  transition: all 500ms;
}

.card-text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
  transition: all 500ms;
}

.footer {
  margin-top: 10vh;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
}

.hidden {
  opacity: 0;
  filter: none;
}

.cards.hidden {
  transform: translateY(250px);
}

.cards-item.hidden {
  transform: translateY(250px);
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.5s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  color: white;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

.loadScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(100px);
  z-index: 69420100;
  transition: all 500ms;
}

.fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 100%;
  z-index: 100002;
  background-color: rgb(25, 25, 25);
  transition: all 500ms;
  animation: fadeIn 500ms;
}

.icon {
  text-align: center;
}

.iconImg {
  width: 20%;
  height: 20%;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleDown {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes enterUp {
  0% {
    transform: translateY(250px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-250px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transsform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-250px);
    opacity: 0;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(-250px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-250px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
