body {
  background-color: rgb(54,54,54);
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  text-align: center;
  font-family: 'Century Gothic', 'Apple Gothic', sans-serif;
  font-size: 15px;
}
img {
  margin-top: 20px;
}
p {
  text-align: center;
  padding: 20px ;
}
#div1 {
	position:relative;
  float: left;
	width: 25%;
  height: 1000px;
  background-color: black;
  cursor: pointer;
  color: white;
}
#div2 {
	position:relative;
  float: left;
	width: 25%;
  height: 1000px;
  background-color: #83dedf;
  cursor: pointer;
}
#div3 {
	position:relative;
  float: left;
	width: 25%;
  height: 1000px;
  background-color: rgb(255,204,0);
  cursor: pointer; 
}
#div4 {
	position:relative;
  float: left;
	width: 25%;
  height: 1000px;
  background-color: rgb(0,255,51);
  cursor: pointer;
}
#div1:hover {
  background-color: white;
  color: black;
}
#div2:hover {
  background-color: white;
}
#div3:hover {
  background-color: white;
}
#div4:hover {
  background-color: white;
}