@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&display=swap");

* {
  font-family: "Inter", sans-serif;
  cursor: default;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

body {
  overflow: hidden;
  background-image: url();
  background-size: 100%;
  margin: 0;
  padding: 0;
}

img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
}

.preload {
  position: absolute;
  height: 100vh;
  line-height: 100vh;
  width: 100vw;
  background: #000000e0;
  backdrop-filter: blur(10px);
  font-weight: lighter;
  font-size: 20pt;
  z-index: 100;
  text-align: center;
  color: #ffffff;
  opacity: 1;
  transition: all ease 1s;
  font-family: monospace;
}

.container {
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.myoverlay {
  backdrop-filter: blur(7px);
}

.mywindow {
  background: #ececec;
  position: absolute;
  left: calc(50% - 200px);
  top: calc(50% - 100px);
  font-size: 12pt;
  border-radius: 10px;
  border: 1px solid #c6c6c6;
  box-shadow: 0px 0px 10px #00000020;
}

.myanimated {
  transition: all ease 0.3s;
}

.mycontrol {
  position: absolute;
  display: inline-block;
  height: 30px;
  left: 10px;
  padding: 0px 5px;
}

.myheader {
  color: #767676;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  border-radius: 10px 10px 0 0;
  background: rgb(209, 209, 209);
  background: linear-gradient(
    0deg,
    rgba(209, 209, 209, 1) 0%,
    rgba(229, 229, 232, 1) 100%
  );
  border-bottom: 1px solid #c6c6c6;
}

.myclose,
.mymini,
.mymax {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 10px;
  margin-right: 2px;
}

.myclose {
  background: #fe5d56;
  border: 1px solid #ea3e4a;
}

.myclose:hover {
  background: #ea3e4a;
}

.mymini {
  background: #f6bd28;
  border: 1px solid #f8ae1c;
}

.mymini:hover {
  background: #f8ae1c;
}

.mymax {
  background: #26cd3c;
  border: 1px solid #4bba54;
}

.mymax:hover {
  background: #4bba54;
}

.mybody {
  padding: 30px;
  padding-bottom: 100px;
}

.mytitle {
  font-weight: bold;
  font-size: 14pt;
  margin-bottom: 10px;
}

.mytext {
  width: 250px;
  border-radius: 7px;
  padding: 5px;
  margin-left: 10px;
  box-sizing: border-box;
  border: 3px solid #dcdcdca0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
}

.mytext:focus {
  border: 3px solid rgba(10, 107, 254, 0.5);
}

.mytext:hover {
  cursor: text;
}

.mybutton {
  position: absolute;
  height: 20px;
  line-height: 20px;
  bottom: 32px;
  right: 20px;
}

.mybuttonyes,
.mybuttonno {
  display: inline-block;
  width: 80px;
  background: cyan;
  height: 30px;
  line-height: 30px;
  margin-top: 0px;
  text-align: center;
  border-radius: 5px;
  margin-left: 10px;
  font-weight: 600;
}

.mybuttonyes {
  background: rgb(10, 107, 254);
  background: linear-gradient(
    0deg,
    rgba(10, 107, 254, 1) 0%,
    rgba(106, 163, 252, 1) 100%
  );
  color: #ffffff;
  border: 1px solid #015ffc;
}

.mybuttonyes:hover {
  background: rgb(10, 107, 254);
}

.mybuttonno {
  background: #ffffff;
  border: 1px solid #c6c6c6;
}

.mybuttonno:hover {
  background: #ededed;
}

.myresize {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: se-resize;
}

.vidcont {
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: none;
  background: #000000a0;
  z-index: 2;
}

.myhide {
  display: none;
}

.vidcont:hover {
  cursor: none;
}

video:hover {
  cursor: none;
}

video {
  position: relative;
  left: 0;
  top: 0;
  opacity: 1;
}

.divvideo {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.myclock {
  display: none;
  position: absolute;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  width: calc(100vw - 50px);
  padding: 25px;
}

.contjam {
  position: absolute;
  width: 100%;
  top: 50vh;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  margin: 0;
  padding: 0;
}

.jam {
  position: relative;
  font-size: 100px;
  font-weight: 300;
}

.tanggal {
  position: relative;
  font-size: 20px;
  margin-top: 15px;
}

.ucapan {
  position: relative;
  color: #000000;
  font-size: 20px;
  margin-top: 50px;
  background: #eaeaea90;
  left: calc(50% - 175px - 20px);
  width: 350px;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all ease 0.3s;
}

.myakun {
  color: #ffffff;
  background: #00000080;
  transform: translateY(0px);
  width: 200px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  display: inline-block;
  margin: 3px 2px;
  transition: background ease 0.3s;
  backdrop-filter: blur(10px);
}

.myakun:hover {
  background: #000000e0;
  cursor: pointer;
}

#nama * {
  transition: all ease 0.3s;
}

#nama:hover {
  cursor: default;
}

#nama::before {
  content: "Klik untuk mengubah";
  width: 200px;
  height: 50px;
  line-height: 50px;
  left: 0;
  top: 45px;
  background: #00000090;
  position: absolute;
  z-index: 99;
  border-radius: 10px;
  transition: all ease 0.3s;
  opacity: 0;
  pointer-events: none;
}

#nama:hover::before {
  top: 35px;
  opacity: 1;
}

#nama *:hover,
#textcari:hover {
  cursor: text;
  color: #ffffffa0;
}

#oke:hover {
  background: #ffffff30;
  cursor: pointer;
}

.tombolcari:hover {
  background: rgb(10, 107, 254);
  color: #ffffff;
}

.shortcut {
  position: fixed;
  bottom: 0;
  width: 100px;
  height: 70px;
  line-height: 70px;
  background: #ffffff10;
  margin: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform ease 0.3s;
  backdrop-filter: blur(3px);
}

.shortcut:hover {
  transform: scale(1.1);
  backdrop-filter: blur(5px);
}

.shortcut:active {
  transform: scale(0.9);
  backdrop-filter: blur(5px);
}

.kiri {
  left: 0;
}

.kanan {
  right: 0;
}
