/* general styles */
body, html {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  /* transition: background-color 0.5s ease; */
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: #fff;
  border-bottom: .1em dashed #fff;
}
label{
  font-size: .7em;
  font-weight: 800;
  line-height: 2em;
}
button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 10;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
.transition-fix {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.top-left {
  position: fixed;
  top: 0px; /* Adjust the distance from the bottom */
  left: 0px; /* Adjust the distance from the left */
  padding: 20px;
  /* border: 1px solid red; */
}

.bottom-left {
  position: fixed;
  bottom: 0px; /* Adjust the distance from the bottom */
  left: 0px; /* Adjust the distance from the left */
  padding: 20px;
  /* border: 1px solid red; */
}



/* view modes */
.light-mode{
  background-color: #dadada;
  color: #fff;
}
.dark-mode{
  background-color: #000000;
  color: #dadada;
}