@import url('https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&display=swap');
body
{
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'PT Sans Narrow', sans-serif;
}

.header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 0 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}
.header .logo
{
	opacity: 0;
	margin: 0;
	padding: 0;
	font-size: 2em;
	text-transform: uppercase;
	animation: fadeIn 0.5s linear forwards;
}
.header ul
{
	margin: 0;
	padding: 0;
	z-index: 100;
	display: flex;
}
.header ul li
{
	opacity: 0;
	list-style: none;
	margin: 0 10px;
	animation: fadeIn 0.5s linear forwards;
	padding: 10px;
}
.header ul li:last-child
{
	margin-right: 0;
}
.header ul li a
{
	text-decoration: none;
	font-size: 1.2em;
	color: #000;
	padding: 5px 10px;
	letter-spacing: 2px;
}
.header ul li a.active,
.header ul li a:hover
{
	color: #fff;
	border-radius: 80px 80px 80px 80px;
	border: 3px solid #ffffff9e;
}
@keyframes fadeInRight
{
	0%
	{
		transform: translateX(150px);
		opacity: 0;
	}
	100%
	{
		transform: translateX(0);
		opacity: 1;
	}
}

section
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(29,38,113);
	background: linear-gradient(207deg, rgb(159, 199, 214) 0%, rgb(255, 255, 255) 44%, rgba(159, 199, 214) 100%);
	display: grid;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

@keyframes revealText
{
	0%
	{
		transform: scaleX(1);
	}
	100%
	{
		transform: scaleX(0);
	}
}
@keyframes revealTextReverse
{
	0%
	{
		transform: scaleX(0);
	}
	100%
	{
		transform: scaleX(1);
	}
}

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

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

.sci
{
	position: absolute;
	bottom: 15px;
	right: 30px;
	display: flex;
	flex-direction: column;
}
.sci li
{
	opacity: 0;
	list-style: none;
	padding: 10px 0;
	text-align: center;
	animation: fadeInBottom 0.5s linear forwards;
}

.sci li a
{
	font-size: 1.2em;
	color: #000;
}


.profil-container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 50px;
    margin: 10px;
	position: relative;
	top: 20%;
}
.profil-container a
{
	opacity: 0;
	display: inline-block;
	margin: 20px 0 0;
	padding: 10px 20px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.2em;
	letter-spacing: 1px;
	animation: fadeInBottom 0.5s linear forwards;
	animation-delay: 1s;
	border-radius: 80px 80px 80px 80px;
	border: 3px solid #0b2156;;
}
@keyframes fadeInBottom
{
	0%
	{
		transform: translateY(50px);
		opacity: 0;
	}
	100%
	{
		transform: translateY(0);
		opacity: 1;
	}
}
.profil-container img {
    width: 150px;
    height: 150px;
    border-radius: 0%;
    margin: 10px auto;
    display: block;
}

h2 {
    font-size: 24px;
    margin: 10px 0;
}

h3 {
	font-size: 17px;
}

p {
    font-size: 18px;
    margin: 10px 0;
}

.galeri-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
	position: relative;
	top: -18%;
}

.gambar {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    margin: 10px;
    max-width: 150px;
}

.gambar img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

p {
    font-size: 18px;
    margin: 10px 0;
}

.galeri-title {
    text-align: center;
    padding: 20px;
    margin: 5px;
	position: relative;
	top: 8%;
}

.galeri-container {
	-webkit-animation: scale-up-center 0.4s ease-out both;
	        animation: scale-up-center 0.4s ease-out both;
}

.galeri-title {
	-webkit-animation: scale-up-center 0.4s ease-out both;
	        animation: scale-up-center 0.4s ease-out both;
}

@-webkit-keyframes scale-up-center {
	0% {
	  -webkit-transform: scale(0.5);
			  transform: scale(0.5);
	}
	100% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	}
  }
  @keyframes scale-up-center {
	0% {
	  -webkit-transform: scale(0.5);
			  transform: scale(0.5);
	}
	100% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	}
  }
  
.profil-container {
	-webkit-animation: fade-in 1.2s ease-out both;
	        animation: fade-in 1.2s ease-out both;
}

@-webkit-keyframes fade-in {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes fade-in {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
  }

  .containerkk {
	  max-width: 70%;
	  margin: 0 auto;
	  padding: 20px;
	  background-color: #0a004570;
	  border-radius: 5px;
	  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	  top: 20%;
	  bottom: 15%;
	  left: 40%;
	  position: absolute;
  }

  .containerkk .titlek {
	text-align: center;
  }

  .containerkk .subbutton {
	text-align: center;
  }

  /* Style the form labels */
  label {
	  font-weight: bold;
  }

  /* Style the form inputs and submit button */
  input[type="text"],
  input[type="email"],
  textarea {
	  width: 90%;
	  padding: 10px;
	  margin-bottom: 10px;
	  border: 1px solid #ccc;
	  border-radius: 3px;
  }

  /* Style the submit button */
  input[type="submit"] {
	  background-color: #9401bd00;
	  color: white;
	  border: none;
	  padding: 10px 20px;
	  cursor: pointer;
	  border-radius: 80px 80px 80px 80px;
	  border: 3px solid #ffffff9e;
  }

  .containerkk {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-left {
	0% {
	  -webkit-transform: translateX(-1000px);
			  transform: translateX(-1000px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	  opacity: 1;
	}
  }
  @keyframes slide-in-left {
	0% {
	  -webkit-transform: translateX(-1000px);
			  transform: translateX(-1000px);
	  opacity: 0;
	}
	100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	  opacity: 1;
	}
  }
  