@import url(//fonts.googleapis.com/css?family=Lato:300:400);

body {
  margin:0;
}
img {
  height: 500px;
  width: 500px;
}
 
h1 {
  font-family: system-ui;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  font-family: 'Blippo',  fantasy;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}

.header {
  position:relative;
  text-align:center;
  background-image: url('https://wallpaperaccess.com/full/5281469.jpg');
	background-repeat:no-repeat ;
  background-size: cover;
/**background: linear-gradient(60deg, rgb(58, 150, 183) 0%, rgb(64, 146, 227) 100%);**/
  color:white;
}


.inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:middle;
}

.waves {
  position:relative;
  width: 100%;
  height:25px;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:left;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
/*.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
/*.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}*/
/*parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}*/
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}

/*sign in*/
@use postcss-preset-env {
  stage: 0;
}

/* ---------- GENERAL ---------- */
* {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}


input {
  background-image: none;
  border: none;
  font: inherit;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}

svg {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* ---------- ALIGN ---------- */
.align {
  display: grid;
  place-items: left;
}

/* ---------- BUTTON ---------- */

.buttontk {
  background-color: #ffff00;
  color: #fbf7f7;
  width: 100%;
  padding: 0.50em 1.5em;
  margin-right: 10px;
 
}

.button2:hover {
  box-shadow: 3px  3px 3px 3px  rgba(73, 73, 73, 0.24);
}
.buttonsd {
  margin-right: 10px;
  background-color:#a30000;
  color: #ffffff;
  padding: 0.50em 1.5em;
}
.buttonsmp {
  background-color:#2447aa;
  color: #fafafa;
  padding: 0.50em 1.2em;
  margin-right: 10px;
}
.buttonsma {
  background-color: #bab2b0;
  color: #fff;
  padding: 0.50em 1.2em;
}

.button:focus,
.button:hover {
  background-color: #5398e6;
}

/* ---------- ICONS ---------- */
.icons {
  display: none;
}

.icon {
  fill: currentcolor;
  display: inline-block;
  height: 1em;
  width: 1em;
}

/* ---------- LOGIN ---------- */
.login {
  width: 400px;
}

.login__header {
  background-color: #0ec4f1;
  border-top-left-radius: 1.25em;
  border-top-right-radius: 1.25em;
  color: rgb(244, 238, 238);
  padding: 1.25em 1.625em;
}

.hh{ align-items: left;}

.login__header :first-child {
  margin-top: 0;
  margin-left: 0;
}

.login__header :last-child {
  margin-bottom: 0;
  margin-left: 0;
}

.login h2 .icon {
  margin-right: 14px;
}

.login__form {
  background-color: #fff;
  border-bottom-left-radius: 1.25em;
  border-bottom-right-radius: 1.25em;
  color: #777;
  display: grid;
  gap: 0.875em;
  padding: 1.25em 1.625em;
  
}

.login input {
  border-radius: 0.1875em;
}

.login input[type="name"],
.login input[type="id"] {
  background-color: #eee;
  color: #777;
  padding: 0.25em 0.625em;
  width: 100%;
}

.login input[type="submit"] {
  display: block;
  margin: 0 auto;
}

/*headerrrr logo/*
/* tidak jadi */
.transparent {
  background: transparent;
}

.navbar-inverse {
  transition: all 0.2s ease-in;
}

.thumbnail {
  cursor: pointer;
  position: relative;
  display: flex;
}

.thumbnail-svg {
  flex: 1 0 auto;
  padding: 0.5em;
  max-height: 6em;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #028e2a;
  opacity: 0;
  transition: all 0.2s ease-in;
}

.thumbnail:hover .thumbnail-overlay {
  opacity: 1;
  transition: all 0.2s ease-in;
}

.full-screen {
  background: #eee;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  overflow-y: scroll;
}

.close-window {
  cursor: pointer;
}

.hp {
  font-size: 102px;
  background:radial-gradient(circle farthest-side at right center, rgb(217, 237, 44), rgb(5, 31, 228));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.parentContainer {
  position: relative;
  text-align: center;
  color: white;
  }

  /*stras*/
  