* {
    font-family: 'Play';
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #0F141E;
}

img {
    border-width: 0px;
    /*border-width: 2px;*/
    border-color: #7C8EA6;
    border-style: solid;
}

.hero {
    width: 100%;
    height: 115px;/*150px;*/
    background-image: url("../images/header.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.nav {
    box-sizing: border-box;
    padding-top: 25px;
    height: 80px;
    width: 100%;
    background-color: black;
    border-width: 0px;
    border-width: 2px;
    border-color: #7C8EA6;
    border-style: solid;
}

.nav-wrap {
    width: 1100px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: space-between; /* centering inside a flexbox  */
}

.n1 {
    padding-right: 30px;
}

.dropdown {
    padding-right: 30px;
    position: relative;
    display: inline-block;
}

.dropdown:hover .dropdown-content {display: block;} /* dropdown menue animations */
.dropdown-content a:hover {color: white;}
.dropdown div a:hover {color: white;}
.n1 a:hover {color: white;}

a {
    font-size: 25px;
    color: #F35E0E;
    text-decoration: none;
}

.dropdown-content {
    box-sizing: border-box; /* dropdown menue */
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-right: 20px;
    display: none;
    position: absolute;
    background-color: #1a252d;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content div {
    padding-top: 5px;
}

.article {
    width: 1100px;
    margin-right: auto; /* margin-left and margin-right set on auto for centering */
    margin-left: auto; /* this way of centering is used when there is no flexbox*/
    padding-top: 25px;/*100px;*/
    padding-bottom: 150px;
}

.article a{
    font-size: inherit;
    color: #AFB9C8;
    text-decoration: none;
}



.footer {
    position: relative;
    width: 100%;
    height: 150px;
    background-color: #0A0E14;
    color: #AFB9C8;
    bottom: 0px;
}

.footer-wrap {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.f-left {
	width: 300px;
	box-sizing: border-box;
	margin-top: auto;
	padding-bottom: 25px;
	font-size: medium;
}

.f-mid {
	width: 300px;
	box-sizing: border-box;
	margin-top: auto;
	font-style: italic;
	font-size: large;
}

.f-right {
    width: 300px;
    box-sizing: border-box;
    padding-left: 150px;
    padding-top: 30px;
}

h1 {
    text-align: center;
    font-size: 36px;
    color: #AFB9C8;
    padding-top: 0px;/*40px;*/
    font-weight: 100;
}

p {
    color: #7C8EA6;
    font-size: 18px;
    text-indent: 50px;
    line-height: 30px;
}

h2 {
    text-align: center;
    font-size: 36px;
    color: #F35E0E;
    font-weight: 100;
    padding-left: 20px;
}

/* ----------------------------------------------- MEDIA PAGE starts here ------------------------------------------ */

.screenshots {
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 350px 350px 350px;
    grid-template-rows: 200px 200px 200px 200px;
    grid-row-gap: 30px;
}

.screen {
    width: 320px;
}

/* ----------------------------------------------- NEWS PAGE starts here ------------------------------------------ */

.post {
    width: 1100px;
    border-width: 0px;
    border-width: 2px;
    border-color: #7C8EA6;
    border-style: solid;
    margin-bottom: 50px;
}

.post-content {
    padding: 30px;
    padding-left: 40px;
}

.post-header {
    height: 50px;
    width: 100%;
    background-color: #191F2B;
}

h3 {
    font-size: 40px;
    text-align: left;
    color: #AFB9C8;
    margin-top: 0px;
    font-weight: 100;
}

.post p {
    margin-left: 20px;
}

.post-content a {
    text-align: left;
    font-size: 20px;
    color: #AFB9C8;
    padding-left: 20px;
    font-weight: 100;
}

.post h1 {
    margin-top: 0px;
    padding-top: 0px;
}

.post-date {
    color: #AFB9C8;
    font-size: 20px;
    text-align: right;
    padding-right: 40px;
    padding-top: 10px;
}

.post-content img {
    margin-right: 30px;
    margin-left: 20px;
    border-width: 0px;
    border-width: 2px;
    border-color: #7C8EA6;
    border-style: solid;
    margin-bottom: 50px;
}

.post-header a {/*Back to news button*/
    float: left;
    font-size: 20px;
    color: #F35E0E;               
    padding-left: 40px;
    padding-top: 10px;
    font-weight: 100;
}

.images {/*3 images at the end of a post*/
    height: 220px;
    display: flex;
    justify-content: space-between;           
}

.img-parent {
    width: 330px;
}

.img-parent img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
}

/* ----------------------------------------------- HOUSES starts here ------------------------------------------ */

.houses {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.house {
    width: 300px;
}

.house p {
    width: 300;
    text-indent: 0px;
}