*
{
  box-sizing: border-box;
}


body
{
    background-color: lightblue;
    font-family: Arial, Helvetica, sans-serif;
}

h1
{
    color: navy;
    margin-left: 20px;
}

#author_name
{
    padding-top: 5%;
    /* padding-left: 80px; */
    padding-right: 10%;
    padding-bottom: 5%;
    text-align: right;
    /* background-color: navy; */
    /* background-image: linear-gradient(#0000dd, #000055); */
    background-image: url("blue.title.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-size: 5vw;
}



/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 2vw;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
  font-size: 2vw;
}

/* Page Sub Title */
.subtitle {
   padding-top: 5px;
   padding-bottom: 5px;
   padding-left: 20px;
   background-color: #8dbfcf;
}

.flex-container {
  display: flex;
  flex-direction: row;
  /* background-color: DodgerBlue; */
}

.flex-item-left {
    padding: 10px;
    flex: 60%;
}

.flex-item-right {
    padding: 10px;
    flex: 40%;
}

@media (max-width: 800px)
{
    .flex-container
    {
        flex-direction: column;
    }
}


img
{
    height: 100%;
    width: auto;
}

/* Main page picture gallery */

.img2
{
    float: right;
}

.clearfix::after
{
    content: "";
    clear: both;
    display: table;
}

/* Picture gallery stuff */

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 200px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.title {
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

div.desc {
  padding: 15px;
  text-align: center;
}

/* Style the footer */
.base {
  /* overflow: hidden; */
  display: block;
  clear: left;
  float: none;
  padding: 15px;
  background-color: #87c0d3;
  color: #4692ab;
}

/* Style the footer links */
.base a {
  /* float: left; */
  /* display: block; */
  color: #ffffff;
  /* text-align: center; */
  /* padding: 14px 16px; */
  /* text-decoration: none; */
  /* font-size: 2vw; */
}



