/* intro */

.intro {
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .8s;
}

.intro>.dev-foto>img {
  margin: 5px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.intro>.dev-nama>p {
  color: red;
  font-size: 2.5em;
  font-family: serif;
  text-shadow: 0 0 10px red;
}

.outro {
  opacity: 0;
}



/* style halaman start */
.container-start{
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  background-color: black;
}


.start-panel{
  position: absolute;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: black;
}

.htp-btn-link{
  display: block;
  text-decoration: none;
  color: black;
  padding: 20px 50px;
  margin: 40px 0;
  box-sizing: border-box;
  background-color: #ff5b4f;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  font-family: sans-serif;
}

.start-panel>div{
  padding: 20px 50px;
  margin: 40px 0;
  box-sizing: border-box;
  background-color: #ff5b4f;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  font-family: sans-serif;
}

.start-panel>div:active, .htp-btn-link:active{
  background-color: black;
  color: red;
}

.start-panel>div:hover{
  cursor: pointer;
}

.anmtion-bg>div{
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 3, 3, .9);
  box-shadow: 0 0 50px red;
  
}



.bola2 {
  /* top: 173px; */
  transform: translateY(26vh);
  animation: bola234 1.5s infinite alternate ease-in-out;
}

.bola3 {
  /* top: 313px; */
  transform: translateY(46.5vh);
  animation: bola234 1.5s infinite alternate ease-in-out;
}


.bola4 {
  /* top: 445px; */
  transform: translateY(66.5vh);
  animation: bola234 1.5s infinite alternate ease-in-out;
}

@keyframes bola234{
  0%{
    left: 0;
  }

  100%{
    left: calc(100vw - 50px);
  }
}



/* content */
body{
  background-color: black;
}

.container-content{
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100vh;
}


.dot{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 310px;
  left: 165px;
  border-radius: 50%;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  box-shadow: 0 0 70px 5px red; 
}

.dot:hover{
  cursor: pointer;
}




/* score style */
.container-score{
  position: absolute;
  z-index: 3;
  background-color: black;
  width: 100vw;
  height: 100vh;
  color: rgb(255, 63, 24);
  font-size: calc(2vw + 10px);
  visibility: hidden;
}

.container-score > .text-score{
  display: flex;
  justify-content: space-around;
}

.container-score > .text-score > p{
  margin-top: 9vh;
  font-size: 4em;
}

.container-score > .note{
  width: 100vw;
  text-align: center;
  transform: translateY(12vh);
}


.container-score > .score-mark{
  outline: solid 2px orange;
  display: flex;
  width: 100vw;
  justify-content: center;
  font-size: .8em;
  position: absolute;
  top: 7.1vh;
  font-weight: bold;
}

.container-score > .score-mark > .mark-text-score{
  display: flex;
  justify-content: space-between;
  width: 73.2vw;
}

.container-score >.score-mark p{
  outline: solid 2px orange;
  margin: 0 10px;
}


.btn-reset{
  width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 45vh;
  font-size: .8em;
}

.btn-reset> p{
  background-color: red;
  color: black;
  padding: 20px;
  border-radius: 50px;
}

.btn-reset> p:active{
  background-color: black;
  color: red;
}

.btn-reset> p:hover{
 cursor: pointer;
}


































html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
