section {
	text-align: center;
	margin-bottom: 0;
	top: 0;
	position: relative;
	height: 80px;
	width: 100%;
	background-color: transparent;
	display: flex;
	animation: slide-in 1s ease-out;
	position: fixed;
	z-index: 6;
	background-color: black;
  }
  
  section #nav_bar {
	text-align: center;
	margin-bottom: 0;
	top: 0;
	position: relative;
	height: 80px;
	width: 100%;
	background-color: transparent;
	display: flex;
	animation: slide-in 1s ease-out;
	position: fixed;
	z-index: 6;
	background-color: black;
  }
  
  /* class logo */
  
  .logo {
	color: rgb(255, 255, 255);
	width: 50%;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: left;
	margin-bottom: 50px;
  }
  
  #logoimg {
	margin-bottom: 30px;
	margin-left: 90px;
	margin-top: 30px;
	align-items: center;
	width: 25%;
	display: flex;
	padding-left: 20px;
  }
  
  /* class menuButton */
  .menuButton {
	width: 50%;
	height: 75px;
	display: flex;
	align-items: end;
	justify-content: space-around;
	margin-bottom: 9px;
  }
  
  .menuButton button {
	font-size: 18px;
	margin-bottom: 12px;
  }
  
  .btn {
	color: white;
	background-color: transparent;
	width: 100px;
	height: 30px;
	border-style: none;
	cursor: pointer;
	transition: transform 200ms ease-in-out;
  }
  
  .btn:hover {
	margin: 10px;
	transform: scale(1.1);
	border-bottom: 1px solid #109010;
  }
  
  /* o # e usado para estilzar div com id */
  /* id objeto logo */
  #objeto {
	position: relative;
	width: 80%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 15%;
	margin-left: 5%;
  }
  
  #objeto h1 {
	margin: auto;
	width: 100%;
	text-align: center;
	color: white;
	font-size: 36px;
  }
  
  #objeto p {
	margin: auto;
	font-size: 20px;
	color: white;
	width: 50%;
  }
  
  #button button {
	width: 300px;
	height: 200px;
	background-color: #109010;
	margin-top: 120px;
	margin-right: 600px;
	color: white;
	font-size: 20px;
	border-style: none;
	border-radius: 10px;
	transition: transform 1s ease-in-out;
  }
  
  #button button:hover {
	background-color: white;
	color: #109010;
	transform: scale(1.2);
  }
  