/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
 a {
  color: #B2EC5D;
}


body {
  background-image: url("game_menu2222.png");
  background-size: cover;
    }

:root {
  --bg-color:transparent; /* light green */
  --pg-color:#F5F5DC; /* very light green */
  --accent:#95c87e; /* dark green */
  --accent-2:#465945; /* gray */
}

html, body {
  margin:15px;
  font-family:sans-serif;
  font-size:0.95em;
  /* here is where you'd add a background image */
}

#container {
  background-color:#F5F5DC;
  width:55%;
  border-left:200px solid #95c87e;
  border-right:3px solid #465945;
  position:relative;
}
nav {
  background-color:#95c87e;
  position:absolute;
  top:100px;
  left:50px;
  border:1px solid #F5F5DC;
  width:120px;
  height:200px;
  z-index:9;
}

article { 
padding:100px;
  line-height:2em;
}
h2 {
  font-size:15px;
  border-bottom:1px solid #465945;
  padding-bottom:8px;
}

nav > ul {
  background-color: #465945;
  margin:20px;
  padding:0;
  list-style:none;
}
nav > ul > li {
  border-bottom:1px solid white;
  text-align:center;
}
nav > ul > li:last-child {
  border-bottom:none;
  text-align:center;
}
nav > ul > li > a {
  font-size:12px;
  padding-top:5px;
  padding-bottom:5px;
  display:inline-block;
  color:white;
}



/*  */

p {
  margin: 19em 110px 250px 350px;
}

p1 {
  margin: 20em 700px 0px 10px;
}

input[type="button"] {background: url("imichik.png") top left no-repeat;}

.button {
	background: transparent;
	background-color: rgba(28,28,28,0);
}


#reviews {
	display: flex;
	flex-flow: row wrap;
}
.comment {
	max-width: 540px; 
	flex-basis: 50%;
	margin-left: 50px;
	margin-bottom: 25px;
	padding-left: 53px;
}
.comment_bubble {
	padding: 15px;
	max-width: 470px;
}
.comment_bubble {
	background: #ebebeb;
	position: relative;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	margin-left: 50px;
}
.comment_bubble:before {
	content: "";
    position: absolute;
    right: 100%;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-right: 13px solid #ebebeb;
    border-bottom: 12px solid transparent;
}