#communities {
	display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    margin: 0 auto;
    gap: 2em;
	border-radius:3;
	    align-items: flex-start;
}
.container > h1 {
	text-align: center;
	margin: 0.75em 1em;
font-size: 2.25em;
    margin: 0.5em 1em;
}

.community .gameIcon {
	max-height:80px;
	float: right;
	margin-left:0.5em;
	margin-bottom:0.5em;
}
.community {
    flex-basis: 400px;
    flex-grow: 1;
    padding: 1em;
    max-width: 600px;
    margin: 0 auto;
	background: linear-gradient(0deg, rgb(47 69 88) 0%, rgba(67,95,119,1) 100%);
}

.community > h2 > span > *:not(:last-child) {
	margin-right:3px;
}
.community > h2 > span > *:not(:first-child) {
	margin-left:3px;
}
.community > h2 > span {
	margin: 0 auto;
	display: flex;
}
.community > h2 {
	text-align:center;
	    displaY: flex;
	font-size: 1.75em;
margin: 0 1em 0.5em;
margin: 0 1em 0.25em;
}
.community .details > div {
	display: flex;
	justify-content: space-between;
}

.community .markdown > section {
    margin-left: 0px;
     margin-top: 0px;
}
.community .discord {
	height: 1.25em;
}
.community .titleData { 
	display: flex;
	justify-content: space-between;
}
.community .servers h3 {
	font-size:1.4em;
}
.community .titleData .title {
    /* flex-grow: 2; */
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 0.5em;
    font-size: 1.1em;
}
.titleData .utcHover {
    display: flex;
    align-items: center;
    margin: 0.1em 0.45em;
    gap: 0.2em;
}
.titleData .header {
    font-weight: bold;
    margin-top: 0.1em;
    display: inline-block;
    margin: 0.1em 0.45em;
}

.community .servers .titleData {
	    clear: both;
	align-items: center;
}
.community .serverData  { 
	text-align: right;
	justify-content: space-around;
}
.community .serverData > * {
	display: inline-block;
}

/* .community .serverLinks  { */
	    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: space-evenly; */
/* } */
.community  .titleData:not(:last-child) {
	margin-bottom: 0.25em;
}

/* Dropdown Button */
.dropbtn {
	font-weight: bold;
    color: #FFC112;
    background-color: #466178;
  padding: 0.5em;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #75a1c7;

	}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
    background-color: #456178;
	min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #FFC112;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {    background-color: #75a1c7;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}