/*header style*/
header {
   text-align: center; 
   padding: 20px;
}
/*bg colour*/
html {
    background-color:#000000;
    color: cyan;
}
/*font colour*/

/*navigation menu style*/
nav {
   text-align: center;
   word-spacing: 30px;
   Padding: 10px;
}
/*creating the two-column layout*/
*{
   box-sizing: border-box;
}
.row {
   display: flex;
   flex-wrap: wrap;
}
.post-text-box {
   flex: 70%;
   padding: 20px;
}
.profile {
   flex: 70%;
   padding: 20px;
}
/*profile image and heading style*/
.profile img {
   float: right;
   width: 120px !important;
   height: 120px !important;
   margin-left: 50px;
   margin-right: 0;
}
.profile h1 {
   text-align: right;
}
/*navigation bar style*/
nav {
   text-align: center;
   word-spacing: 30px;
   padding: 10px;
   background-color: midnightblue;
}
/*navigation bar button style*/
nav a {
   color: cyan;
   text-decoration: none;
   font-size: larger;
}