body {
    background-color: #111;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    margin: 0;
    padding: 0;
    text-align: center;
}

.teams {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-top: 20px;
}

.logo {
    width: 100px;
    height: 100px;
}

.content {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.teamdiv {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.description {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

.region-text {
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
}

@font-face {
    font-family: "Lato-Regular";
    src: url("/static/Lato-Regular.ttf");
}

.select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}

.select select {
    font-family: "Arial";
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 8px 9px;
    outline: 0;
    border: 2px solid #686868;
    border-radius: 3px;
    background: #000000;
    color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select select::-ms-expand {
    display: none;
}

.select select:hover,
.select select:focus {
    color: #ffffff;
    background: #000000;
}

.select select:disabled {
    opacity: 0.7;
    pointer-events: none;
}

.select_arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0px 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover~.select_arrow,
.select select:focus~.select_arrow {
    border-top-color: #000000;
}

.select select:disabled~.select_arrow {
    border-top-color: #cccccc;
}

.teammate_name,
.enemy_name,
.teammate_tag,
.enemy_tag {
    padding: 4px;
    font-size: 15px;
    border-width: 1px;
    border-color: #6d6d6d;
    background-color: #000000;
    color: #ffffff;
    border-style: solid;
    border-radius: 1px;
    box-shadow: 3px 1px 16px rgba(210, 210, 210, 0.34);
    text-shadow: -2px -8px 21px rgba(255, 255, 255, 0.1);
}

.teammate_name:focus,
.enemy_name:focus,
.teammate_tag:focus,
.enemy_tag:focus {
    outline: none;
}

.teammate_tag {
    width: 50px;
}

.enemy_tag {
    width: 50px;
}

.button {
	box-shadow:inset 0px 1px 1px 0px #fafafa;
	background:linear-gradient(to bottom, #454545 5%, #000000 100%);
	background-color:#454545;
	border-radius:6px;
	border:1px solid #e6e3e3;
	display:inline-block;
	cursor:pointer;
	color:#ebf4ff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:-2px 2px 13px #ffffff;
}
.button:hover {
	background:linear-gradient(to bottom, #000000 5%, #454545 100%);
	background-color:#000000;
}
.button:active {
	position:relative;
	top:1px;
}

#konsole {
    margin-top: 10px;
    background: #000;
    color: #fff;
    border: 1px solid white;
    border-radius: 10px;
    font-size: 15px;
    width: 100%;
    height: 300px;
}