#friends-container {
	width: 80%;
	min-height: 300px;
	margin: 10px auto;
	display: flex;
	flex-direction: column;
}

#friends-container ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

#friends-container ul li {
	flex: 1;
}

#friends-container .friendlink {
	border: 3px solid white;
    display: block;
    float: left;
    width: calc(100% - 20px);
    height: 120px;
    margin: 10px;
    padding: 15px;
    text-decoration: none;
    color: white;
    font-family: 'Actor', sans-serif;
    font-size: 25px;
    text-align: center;
    background-color: transparent;
    transition: all 0.4 ease;
}

#friends-container .friendlink:hover {
	color: white;
	font-weight: bolder;
	background-image: linear-gradient(rgba(0,0,0,0), red);
}

#home-content #home-fotos {
	display: flex;
	flex-direction: row;
}

#home-fotos img {
	width: auto;
}

#veranstaltungen-content {
	display: flex;
	flex-direction: row;
}

#veranstaltungen-content img {
	height: 230px;
	margin: auto;
}

#veranstaltungsliste {
	font-size: 20px;
	color: white;
}

#veranstaltungsliste #tableheader {
	background-image: linear-gradient(rgba(0,0,0,1), #222222);
}

#veranstaltungsliste tr:nth-child(odd) {
	background-color: #222222;
}

#veranstaltungsliste tr:nth-child(even) {
	background-color: #444444;
}

#veranstaltungsliste th {
	font-size: 25px;
}

#veranstaltungsliste th, td {
	padding: 20px;
}

#mitglieder-content {
	color: white;
	font-family: 'Amatic SC', sans-serif;
}

#bio-text {
	text-align: justify;
}

#bio-content img#historytanuki {
	border: none;
	float: left;
	margin-left: 120px;
	padding: 20px;
}

.member {
	display: flex;
	flex-direction: row;
	margin: 50px 100px;
	padding: 50px;
	border-top: 3px double red;
}

.member .member-name-mobile {
	display: none;
}

.member:first-child {
	border: none;
}

#mitglieder-content .member-name {
	font-size: 50px;
	margin: auto;
}

#mitglieder-content .member-name-mobile {
	font-size: 50px;
	margin: 30px auto;
}

.member img {
	border-style: none;
	padding: 0;
	width: auto;
	margin: 0px auto;
	height: 100%;
}

.member .member-info {
	flex: 3;
	padding: 0 100px;
	margin: auto;
}

.member .member-foto img {
	flex: 1;
	height: 400px;
}

.member .member-foto {
	flex: 1;
	margin: auto;
}

.member .member-pic img {
	height: 250px;
	margin-top: 100px;
	display: none;
}

.member .member-foto .chibi-quer {
	height: 300px;
}

.member .member-text {
	font-family: 'Actor', sans-serif;
	font-size: 20px;
}

.member .member-text .attribute {
	color: white;
	text-shadow: 1px 1px 1px red, -1px 1px 1px red, 1px -1px 1px red, -1px -1px 1px red;
}

@media only screen and (max-width: 700px) {
	#friends-container {
		width: 100%;
		min-height: 300px;
		margin: 10px;
		display: block;
	}

	#veranstaltungen-content img {
		display: none;
	}
}