*{
  margin: 0;
  padding: 0;
  
}


.header{
  height: 100px;
  background: #34495e;
  padding: 0 20px;
  color: #fff;
}
.logo{
  line-height: 100px;
  float: left;
  text-transform: uppercase;
  font-family: "montserrat", sans-serif;
}

.menu{
  float: right;
  line-height: 100px;
}
.menu a{
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 10px;
  transition: 0.4s;
  font-family: "montserrat", sans-serif;
}
.show-menu-btn,.hide-menu-btn{
  transition: 0.4s;
  font-size: 30px;
  cursor: pointer;
  display: none;
}
.show-menu-btn{
  float: right;
}
.show-menu-btn i{
  line-height: 100px;
}
.menu a:hover,
.show-menu-btn:hover,
.hide-menu-btn:hover{
  color: #3498db;
}

#chk{
  position: absolute;
  visibility: hidden;
  z-index: -1111;
}

.content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.bot {
	 margin: 600px 600px 0 600px;
	 padding: 30px;
  float: center;
  text-transform: uppercase;
  font-size: 100px;
  font-family: "montserrat", sans-serif;
}
.addbot a {
	text-decoration: none;
	color: #000;
	font-family: 'Oswald', sans-serif;
	font-size: 40px;

}

.addbot i {
	font-size: 40px;
}




@media screen and (max-width:800px) {
  .show-menu-btn,.hide-menu-btn{
    display: block;
  }
  .menu{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #333;
    right: -100%;
    top: 0;
    text-align: center;
    padding: 80px 0;
    line-height: normal;
    transition: 0.7s;
  }
  .menu a{
    display: block;
    padding: 20px;
  }
  .hide-menu-btn{
    position: absolute;
    top: 40px;
    right: 40px;
  }
  .content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.addbot i {
	font-size: 30px;
}
.bot {
	 margin: 200px 200px 0 200px;
	 padding: 10px;
  float: center;
  text-transform: uppercase;
  font-size: 40px;
}
.addbot a {
	text-decoration: none;
	color: #000;
	font-size: 25px;
}
.addbot {
	margin: 10px;
}
  #chk:checked ~ .menu{
    right: 0;
  }
}
