.keySkills {
	list-style-type:none;
	column-count: 1;
	columns: 1;
	-moz-column-count: 1; /*used for firefox*/
    -webkit-column-count: 1; /*used for mobile device*/
	background-color: #AFABAA;
	border-radius: 5px;
	padding-top:20px;
	padding-left:0px;
	padding-bottom:20px;
	font-size: 18px;
	font-weight: bold;
    line-height: 1.5;
}

 .loader {
    border: 16px solid #AFABAA; /* grey */
    border-top: 16px solid #000000; /* black */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
	text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
