html{
  background-color: #00040f;
  
}

@media screen and (max-width: 768px){

  .icon-burger .line {
    width: 35px;
    height: 1px;
    background-color: #fff;
    margin: 3px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

:checked ~ .icon-burger .line:nth-child(1) {
  transform: translateY(6px) rotate(225deg);
}
:checked ~ .icon-burger .line:nth-child(3) {
  transform: translateY(-6px) rotate(-225deg);
}
  
.links {
	float: right;
	padding: 0;
	margin: 0;
	width: 60%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
 .links li {
	list-style: none;
    transform: translate(0px, 30px);
    margin-bottom: 5%;

}

i{
    color:white;
    font-size: 15px;
    display: flex;
    padding: 30px;
    align-items: center;
    text-align: center;
    transform: translate(-20px, 40px);

  }
 .links li a {
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    font-family: 'RF Dewi';
    font-weight: 1600;




}

.links img{
  transform: translate(0px, 20px);
  color:white;
}


.links {
    float: none;
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    top: 55px;
    bottom: 100%;
    width: auto;
    height: auto;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    transition-duration: 0.5;
    text-align: center;
    color: white;
    background-color: #00040f;
}
}
