html{
  scroll-behavior: smooth;
}

body{
  margin: 0 auto;
  padding:2%;
  background-image: url(source/background.png);
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: 120% 0%;
}

.logo{
  width: 40px;
  height: 40px;
  margin-left: 1%;
  position: fixed;
}

.header{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,1);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.overlay a:hover, .overlay a:focus {
  color: #fa991c;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.buttonpojok{
	font-size: 25pt;
	font-weight: bold;
	margin-right: 1%;
	cursor: pointer;
  margin-left: 92%;
  position: fixed;
}

h2{
  text-align: center;
  font-weight: bold;
  font-family: 'Signika', sans-serif;
  font-size: 25pt;
  margin-top: 8%;
}

p{
  font-family: 'Montserrat', sans-serif;
  margin-left: 42%;
  font-size: 15pt;
  margin-top: 3%;
  margin-bottom: 5%;
}

.box{
  display: flex;
  flex-direction: row;
}

.boxluar{
  display: flex;
  flex-direction: column;
  margin-top: -0.3%;
  margin-left: 42%;
}

.icon{
  width: 17%;
  margin-bottom: 6.5%;
  margin-top: 6.5%;
}

h5{
  font-family: 'Montserrat', sans-serif;
  font-size: 12pt;
  margin-top: 3%;
  color: black;
}

a{
  text-decoration: none;
}

.text123{
  margin-left: -7%;
}

.w3-animate-fading{
  animation:fading ease 3s
}

@keyframes fading{
  0%{opacity:0}
  100%{opacity:1}
}

