/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 02 2023 | 13:21:54 */
/* Add your CSS code here.
/* tagCloud */
div#nav-tag-cloud {
    display: flex;
    justify-content: center;
	margin-top: 20px;
	flex-direction: column;
    gap: 30px;
	align-items: center;
}
.profile-container .tag-cloud span {
    margin: -10px 0;
}
.profile-container .tag-cloud a, #tagsearchresult a {
	text-decoration:none;
}
#tagsearchresult a {
	color: #000;
}
#tagsearchresult ul li {
	list-style-type: none;
	margin-bottom:10px;
}
.profile-container .tag-cloud {
    position: relative;
    width: 600px;
	text-align: center;
    border-radius: 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-container .tag {
    position: absolute;
    transform-origin: center;
    text-align: center;
}

.profile-container .tag[data-index="0"] {
    /* this will be the center tag */
    position: relative;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

