*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html,
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  color: black;

  object-fit: cover;
  color: white;
  animation: gradient 4s ease infinite;
  font-size: 14px;
  z-index: 1;
  overflow-x: hidden;
  scroll-behavior: smooth !important;
  opacity: 1;


}

a {
  text-decoration: none;
  color: white;
}

ul,
ol,
li {
  list-style: none;
}

/*hide scroll-bar */
::-webkit-scrollbar {
  background-color: transparent;
  display: none;
  opacity: 0;
  width: 0;
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}
