.body{
	background-color: black;
	overflow: hidden;
}

.row{
	position: absolute;
	bottom: 15%;
	width: 100%;
}

#button{
	display: none;
}
#button2{
	display: none;
}
#button3{
	display: none;
}
#rotate {
  animation: otation 2s infinite linear;
  display: none;
  z-index: 3;
  position: absolute;
  top: 8%;
  left: 5%;
}

#rotate2 {
  animation: otation 2s infinite linear;
  display: none;
  z-index: 8;
  position: absolute;
  top: 8%;
  Right: 5%;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#logo{
	transition: width 2s, height 2s, transform 2s;
}

#logo:hover{
	transform: rotate(360deg);
	
}



