body {
  font-size: 15px;
}

.stars {
  background: linear-gradient(rgba(0, 0, 1.0, 0.8), rgba(0, 0, 1.0, 0.5)), url("/static/img/background.jpg");
}

.blue-gradient {
  background: -moz-linear-gradient(45deg, rgba(1, 31, 65, 1.0), rgba(2, 40, 80, 1.0) 100%);
  background: -webkit-linear-gradient(45deg, rgba(1, 31, 65, 1.0), rgba(2, 40, 80, 1.0) 100%);
  background: -webkit-gradient(linear, 45deg, from(rgba(1, 31, 65, 1.0)), to(rgba(2, 40, 80, 1.0)));
  background: -o-linear-gradient(45deg, rgba(1, 31, 65, 1.0), rgba(2, 40, 80, 1.0) 100%);
  background: linear-gradient(to 45deg, rgba(1, 31, 65, 1.0), rgba(2, 40, 80, 1.0) 100%);
}

.logo {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.0);
}

.blue-background {
  background-color: rgb(40, 80, 120);
}

.jumbotron {
  font-weight: bold;
}

.center {
  text-align: center;
}

.navbar {
  background-color: rgba(20, 40, 60, 0.7);
  color: white;
}



a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a.link2:link {
  color: blue;
  background-color: transparent;
  text-decoration: none;
}

a.link2:visited {
  color: blue;
  background-color: transparent;
  text-decoration: none;
}

a.link2:hover {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

a.link2:active {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

.btn_join {
	box-shadow:inset 0px 0px 15px 7px #415989;
	background:linear-gradient(to bottom, #415989 5%, #415989 100%);
	background-color:#415989;
	border-radius:6px;
	border:1px solid #e3e4e6;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:18px;
	padding:8px 17px;
	text-decoration:none;
	text-shadow:0px 2px 0px #263666;
}
.btn_join:hover {
	background:linear-gradient(to bottom, #415989 5%, #415989 100%);
	background-color:#415989;
}
.btn_join:active {
	position:relative;
	top:1px;
}

.chat-button {
  padding: 3px 8px;

  text-decoration: none;

  color: black;

  border: none;
  cursor: pointer;

  border-radius: 6px; 
}

.chat-button:link {
  text-decoration: none;
}

.chat-button:visited {
  text-decoration: none;
}

.chat-button:hover {
  text-decoration: none;
}

.chat-button:active {
  text-decoration: none;
}




.chat {
  font-size: 14px;
  padding: 5px 5px;
  border: solid 2px rgb(150, 150, 150);
  background-color: rgb(240, 240, 240);
  margin: 0.5rem;

  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;

  overflow-y: scroll;
}

.chat-message {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.chat-log {
  color: gray;
  font-style: italic;
  margin: 0;
  padding: 0;
  max-width: 100%;
}



input[type=submit], .greyButton:link, .greyButton:visited {
  padding: 6px 10px;

  margin-top: 15px;
  margin-bottom: 20px;

  background-color: #dedede;
  text-decoration: none;

  color: black;

  border: none;
  cursor:pointer;

  border-radius: 6px;
  width: 20%;
}


details > summary {
  padding: 6px 10px;

  margin-top: 15px;
  margin-bottom: 20px;

  background-color: #dedede;
  text-decoration: none;

  color: black;

  border: none;
  cursor:pointer;

  border-radius: 6px; 
}