* {
  font-family: monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: black;
}

.container {
  overflow: auto;
  height: 100vh;

  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.table-rows {
  width: 800px;
  margin: 50px auto 0;
  display: table;
  box-sizing: border-box;
}

.row {
  margin: 20px 0;
}

.column {
  display: table-cell;
  padding: 10px;
  width: 33%;
  text-align: center;
  vertical-align: bottom;
  border-right: 10px;
}

section {
  width: 100%;
  height: 100vh;
  border-bottom: solid 1px #000;
  background-position: bottom center;

  scroll-snap-align: start;
}

.content {
  height: 100vh;
  padding: 10%;
  text-align: center;
  color: aliceblue;
}
/*
.content h1 {
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
} */

.content h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 auto;
}

.content p {
  line-height: 1.5;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.content h2 {
  font-size: 30px;
  font-weight: 200;
  line-height: 1.75;
  margin: 0 auto;
}

.content a {
  font-size: 30px;
  font-weight: 200;
  line-height: 1.75;
  margin: 0 auto;
  color: darkorange;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: aliceblue;
}

.content li {
   list-style-type: none;
}

.coment-box {
  padding: 20px;
}


/* scroll bars */

::-webkit-scrollbar {
  width: 0;
  /* width: 30px; */
  /* height: 30px; */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, deepskyblue, darkgrey);
  border-radius: 30px;
}

/* html::-webkit-scrollbar-track {
  background: linear-gradient(90deg, darkgrey, black)
} */


/* lightbox get it from yucub vid's thanks for web programing unpas */
.gallery {
   margin: 10px 40px;
   max-height: 900px;
   display: flex;
   justify-content: center;
}

.gallery img {
   width: 120px;
   height: 120px;
   transition: 1s;
   padding: 5px;
}

.gallery img:hover {
   filter: drop-shadow(4px 4px 4px orange);
   transform: scale(1.1);
}

.gallery li {
	width: 120px;
	height: 120px;
	/*overflow: hidden;*/
	float: left;
	margin: 10px;
	position: relative;
  text-decoration: none;
  /* align-items: center; */
}

.gallery li,
.gallery li a img,
.gallery li span {
	/* border-radius: 100%; */
  /* align-items: center; */
}

.gallery span {
	display: block;
	width: 120px;
	height: 120px;
	position: absolute;
	top: 0;
	text-align: center;
	line-height: 100px;
	opacity: 0;
}

/* .wrapper {
  max-width: 250px;
  display: flex;
  overflow-x: auto;
  overflow-y:hidden;
} */

.item {
  padding-bottom: none;
  min-width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  position: flex;
  justify-content: center;
}

.list {
  text-align: left;
}

/* .wrapper::-webkit-scrollbar{
  width: 0;
}  */

.clear {
	clear: both;
}

/* overlay */
.overlay {
	width: 0;
	height: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0);
	z-index: 9999;
	transition: .8s;
	padding: 100px 0;
}

.overlay:target {
	width: auto;
	height: auto;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,.7);
}

.overlay img {
	max-height: 100%;
	box-shadow: 2px 2px 7px rgba(0,0,0,.5);
}

.overlay:target img {
  height: 50%;
  width: 50%;
	animation: zoomDanFade 1s;
}

.overlay .close {
	position: absolute;
	top: 50px;
	left: 50%;
	margin-left: -20px;
	color: white;
	text-decoration: none;
	background-color: black;
	border: 1px solid white;
	line-height: 14px;
	padding: 5px;
	opacity: 0;
}

.overlay:target .close {
	animation: slideDownFade .5s .5s forwards;
}



/* animate */
@keyframes zoomDanFade {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes slideDownFade {
	0% {
		opacity: 0;
		margin-top: -20px;
	}

	100% {
		opacity: 1;
		margin-top: 0;
	}
}
