* {
  margin: 0px;
  scroll-behavior: smooth;
}

h1 {
  font-weight: 700;
}

.content_limitation {
  width: 100%;
  max-width: 1920px;
}

.viewport_mid {
  display: flex;
  justify-content: center;

  width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #0b1318;
}

::-webkit-scrollbar-thumb:hover {
  background-color: white;
}

.type_badge {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 6px;
}

.type_icon {
  width: 36px;
}

.transform_transition {
  transition: transform 0.3s ease;
  transform: scale(1);
}

.transform_transition:hover {
  transform: scale(1.05);
}