.speech-bubble {
	position: relative;
	background: #8dbc85;
	border-radius: .4em;
	min-width: 30px;
	text-align: center;
	padding: 12px 12px;
	margin: 0;
	top: 15px;
	left: -10%;
	width: 300px;
}

.speech-bubble:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 36px solid transparent;
	border-left-color: #8dbc85;
	border-right: 0;
	border-top: 0;
	margin-top: -18px;
	margin-right: -36px;
}

@media screen and (max-width: 700px) {
  .speech-bubble:after {
	content: '';
	position: absolute;
	top: 125%;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 36px solid transparent;
	border-top-color: #8dbc85;
	border-bottom: 0;
	border-right: 0;
	margin-left: -18px;
	margin-bottom: -36px;
  }
}

@keyframes switch {
  0% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.bounce {
  animation: switch 0.3s ease;
}
.gamewindow {
  background-color:darkgreen;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width:100%;
  margin-top: 20px;
}