@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

html {
  scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #ffffff;
  font-family: 'Lato', sans-serif;
	font-weight: 800;
}

a:link{
  color: rgb(223, 153, 141);
}
a:visited {
  color: rgb(223, 153, 141);
}
a:active {
  color: rgb(223, 153, 141);
}

.container {
  width: 70%;
  text-align: center;
	margin: 0 auto;
}

.sectionContainer {
  padding: 150px;
  width: 70%;
  display: block;
  text-align: center;
	margin: 0 auto;
}

.sectionContainer img {
  width: 256px; 
  height: auto;
  display: inline-block;
}

.sectionContainer p {
  text-align: left;
  padding: 25px;
  display: inline-block;
}

.gamePage {
  padding: 150px;
  width: 70%;
  display: block;
  text-align: center;
	margin: 0 auto;
}

.gamePage img {
  width: 550px;; 
  height: auto;
  display: inline-block;
}

.gamePage p {
  text-align: left;
  padding: 25px;
  width: 50%;
  display: inline-block;
}

.gamePageCenter {
  text-align: center;
}

.parallax::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px) scale(2);
  background-size: 100%;
  z-index: -1;
}

header {
  background: #ffffff;
}

header::after {
  content: '';
  display: table;
  clear: both;
}

.logo {
  float: center;
  margin: 0 auto;
  padding: 30px 0;
}

nav {
  float: center;
}

nav ul {
  float: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 70px;
  padding-top: 23px;

  position: relative;
}

nav a {
  color: rgb(223, 153, 141);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

nav a:hover {
  color: #000;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #000;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}

.work{
  width: 80%;
  padding: 100px;
  text-align: center;
  margin: 0 auto;
}

.skills{
  display: inline-block;
  padding: 100px;
  text-align: left;
  margin:  auto;
}

.work img{
  margin: 1%;
  width: 30%;
}

footer {
	margin: 0 auto;
  text-align: center;
  padding: 50px;
}

.social{
  width:32px; 
  height: auto;
  padding: 10px;

  display: inline-block;
  text-align: center;
  margin: 0 auto;
  opacity: 1;
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
}

.social:hover {
opacity: 0.5;
}