body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: black;
}
canvas {
  display: block;
  position: fixed;
  top:0;
  left:0;
}

.container {
  position: fixed;
  z-index: 1;
  width: 100%;
  margin-right: 2%;
  margin-left: 2%;
  color: #9D490A;
  margin-top: 2%;
}

header::after {
  content: '';
  display: table;
  clear: both;
}


nav ul {
  margin: 0;
  padding: 0;
  list-style: none;

}

nav li {
  display: inline-block;
  margin: 0 140px;
  font-size: 40;
  font-weight: bolder;
  font-family: chalkduster, fantasy;
  position: relative;

}

nav a{

  color: white;
  text-decoration: none;

}

nav a:hover {
  color: #9D490A;;


}


nav a::after{
  content: '';
  display: block;
  height: 5px;
  width: 100%;
  background-color: #9D490A;
  position: absolute;
  width: 0%;
  transition: all ease-in-out 250ms;
}

nav a:hover::after{
  width: 100%;
}


.about {
  margin-top: 56%;
  position: absolute;
  z-index: 1;
  color: white;
  background: rgba(0,0,0,.8);
}


.about h3 {
  color: #5A7843;
  font-family: chalkduster, fantasy;
  text-align: center;
  line-height: 1.5;
  font-size: 30;



}

.about p {
  color: white;
  margin-left: 2%;
  margin-right: 2%;
  line-height: 1.3;
  font-size: 20;
  text-align: center;

}

.about li {
  color: white;
  margin-left: 2%;
  line-height: 1.3;
  font-size: 20;

}



.mapy {
    margin-top: 150%;
    position: absolute;
    z-index: 1;
    background: rgba(0,0,0,.8);
    width: 100%;
}


.maptitle {
  color: #5A7843;
  font-family: chalkduster, fantasy;
  text-align: center;
  line-height: 1.5;
  font-size: 30;

}

#map {
  background: rgba(0,0,0,.8);
  margin-left: 2%;
  margin-right: 2%;
  height: 600px;
}

.contact {
  margin-top: 260%;
  position: absolute;
  z-index: 1;
  background: rgba(0,0,0,.8);
  width: 100%;
}

.contact h3 {
  color: #5A7843;
  font-family: chalkduster, fantasy;
  text-align: center;
  line-height: 1.5;
  font-size: 30;

}

.contact p {
  color: white;
  margin-left: 2%;
  margin-right: 2%;
  line-height: 1.3;
  font-size: 20;
  text-align: center;
}
/*
p .social{
  position: absolute;
  z-index: 1;
  background: rgba(0,0,0,.8);
  width: 100%;
}

.contact .social {
    margin-left: 30%;
    width: 100%;
    transform: translateY(-50%);
}
*/


.social {
  position: absolute;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,.8);
}

.btn{
  display: inline-block;
  width: 130px;
  height: 130px;
  background-color:	#DCDCDC;
  margin: 10px;
  margin-left: 40px;
  margin-right: 40px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #000070;
  color: #5A7843;
  overflow: hidden;
  position: relative;

}

.btn i {
  line-height: 130px;
  font-size: 80px;
  transition: 0.2s linear;
}


.btn:hover i{
  transform: scale(1.3);
  color: #DCDCDC;
}

.btn::before{
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #9D490A;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}

.btn:hover::before{
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}

@keyframes aaa {
  0%{
    left: -110%;
    top: 90%;
  }50%{
    left: 10%;
    top: -30%;
  }100%{
    top: -10%;
    left: -10%;
  }
}
