html.home {
    background-color:#070738;
}
/*Home page formating*/
.container {
  position: relative;
}
div.center{
    display:flex;
    justify-content: center;
    position:relative;
    margin: 30px;
}
div.abtme{
    position:absolute;
    width: 12vw;
    height: 12vw;
    top: 30%;
    left: 15%;
    text-align: center;
}
div.blg{
    position: absolute;
    width: 12vw;
    height: 12vw;
    top: 5%;
    left: 30%;
    text-align: center;
}
div.gallery{
    position:absolute;
    width: 12vw;
    height: 12vw;
    top: 5%;
    right: 30%;
    text-align: center;
}
div.box4{
    position:absolute;
    width: 12vw;
    height: 12vw;
    top: 30%;
    right: 15%;
    text-align: center;
}
img.main { 
    padding-bottom: 20px;
    width: 40%;
    height: 50%;
}
img.stars {
    object-fit: fill;
    width: 100%;
    height:100%;
}
/*navigation bar css*/
ul.navbar {
    list-style-type: none;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    margin: 0;
    background-color: #333333;
    display: flex;
    justify-content: center;
}
li a.navbar {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
}
li a.navbar:hover {
  background-color: #111111;
}
/*for blog page*/ 
div.sidebar{position: fixed;
        top: 0;
        left:0;
        border: 2px black solid;
        width: 25%;
        height:100%;}
div.display {
            display: block;
            border: 2px black solid;
            margin-left: 28%;
            margin-top: 10%;}
ul.articles {
            list-style-type: none;
        }
/*gallery page*/
    * {
  box-sizing: border-box;
}
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
/*about page*/

.intro {
    width:75%;
    letter-spacing: 1px;
}
}
.portbox{
    display:block;
    width:25%; 
    position: relative;
    right:5%;
    margin-top: 10px;
}
.portrait{
    object-fit: contain;
    position: relative;
    right:5%;
    width: 150px;
}
figcaption{
    background-color: beige;
    border:black;
}