/*Style the tab button*/
.tablink{
 background-color:#555;
 color:white;
 float:left;
 border:none;
 outline:none;
 cursor:pointer;
 padding:14px 16px;
 font-size:17px;
 width:25%;
}

/*Change background color of buttons on hover*/
.tablink:hover {
 background-color:#777;
}

/*Set default styles for tab content*/
.tabcontent {
 color:white;
 display:none;
 padding:50px;
 text-align:center;
}

/*Style each tab content individually*/
#Home {background-color:red;}
#Services {background-color:green;}
#Partiners {background-color:blue;}
#Contact {background-color:orange;}