* {
	box-sizing: border-box;
}

body {
	background-image: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(../Images/background1.png); 
  color: white;
    background-repeat: no-repeat;
  background-attachment: fixed;
}

.navbar {
	width: 85%;
	margin: auto;
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.logo{
	width: 80px;
}

.navbar ul li{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	position: relative;
	color: white;
}

.navbar ul li a{
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

.navbar ul li::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.navbar ul li:hover:after{
	width: 100%;
}
.content{
	max-width:1200px;
	margin-top:50px;padding: 8px 16px!important;
	transition: margin-left .4s;
	margin-left: auto;
  margin-right: auto;
}

.first{
	padding: 0 8px;
	padding-top: 16px!important;
  padding-bottom: 16px!important;
  text-align: center!important;
}

.para {
		font-size: 20px;
}

.first::before{
	content: "";
    display: table;
    clear: both;
}

.first::after{
	content: "";
    display: table;
    clear: both;
}
.third {
	float:left;
	width:33.333%;
	padding:10px;

}

.third p {
	border: 2px solid coral;
	padding: 5px;
}

.third img {
	border: 5px solid khaki;
	padding: 20px;
}

.edit-image {
  text-align: center;
  margin-bottom: 20px;
}

.btn{
	font-size: 20px;
	text-decoration: none;
	color: peru;
	float: left;
	list-style: none;
	display: inline-block;
	position: relative;
}

.btn::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.btn:hover:after{
	width: 100%;
}


.btn-grey{
	font-size: 20px;
	text-decoration: none;
	color: red;
	float: right;
	list-style: none;
	display: inline-block;
	position: relative;
}

.btn-grey::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.btn-grey:hover:after{
	width: 100%;
}


h1 {
text-align: center;
}

form {
  width: 100%;
}

input, textarea {
  border: 1px solid #9f782d;
  border-radius: 20px;
  min-height: 40px;
  padding: 10px 10px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  color: #545454;
}

textarea {
  min-height: 100px;
}

.game-manage {
  max-width: 500px;
  margin: 0 auto;
}

.footer {
	width: 95%;
	padding: 40px 0;
	display: flex;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}


.footer ul li{
	list-style: none;
	display: inline-block;
	margin: 20px;
	position: relative;

}

.footer ul li a{
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

.footer ul li::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #1E90FF;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s;
}

.footer ul li:hover:after{
	width: 100%;
}