* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
			background-image: url('https://i.imgur.com/VMCBPEG.gif');
			background-repeat: no-repeat;
			background-size: cover;
  background-position: center center;
			color: #000000;
			font-family: 'Roboto', sans-serif;
			font-size: 18px;
			-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


header {
	background: linear-gradient(to bottom, #0d47a1, #000000);
	padding: 20px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
}

.icon {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	order: -1;
}

.heading {
	color: #fff;
	margin: 0;
	font-size: 15px;
}


.konten {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.profile {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 50px;
}

.img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.text {
  color: white;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.buttons {
  display: flex;
  flex-direction: column;
}

button {
  margin: 5px;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #252525, #414141, #4f4f4f);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button a {
    color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

footer {
  background: linear-gradient(to bottom, #0f102d, #111214);
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  font-size: 0.5em;
}

footer a {
  text-decoration: none;
}


@media (max-width: 768px) {
  .konten {
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  
  .profile {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    margin-right: 0;
  }
  
  h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 14px;
  margin-bottom: 20px;
}
}