

* {
  box-sizing: border-box;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Arial, sans-serif, Helvetica, sans-serif;
}


.pro{
margin-top: 1.25em;
width: 100%;
position: fixed;
text-align: center;
font-size: 30pt;
font-weight: bolder;
color: white;
}

.header{
  
  position: fixed;
  width: 100%;
  padding: 15px;
  background-color: rgb(223, 186, 85);
  font-size: large;
  font-weight:bolder;
  color: rgb(85,122,223)
}


/* start of image gallery */
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }
  
 
body{
    background-color: rgb(177, 210, 210);
    
}

 .navbar ul{
    position: fixed;
    list-style-type: none;
    width: 100%;
    
}

.navbar a{
    color:white;
    text-decoration: none;
    font-size: larger;
    font-weight: bold;
    display: block;
   
}

.navbar a:hover {
    color: rgb(85,122,223);
}

.navbar a:active {
    color: rgb(85,122,223);
}

.navbar li{
   float:right;
   padding-left: 0px;
   padding-right: 30px;
   padding-top: 25px;
   display: block;
}

/* Responsive layout - mobile */
@media screen and (max-width: 600px) {
  .navbar ul, .pro{
    margin-top: 1.5em;
    line-height: 1em;
    font-weight: bold;
    font-size:x-large;
    color:rgb(85,122,223);
    text-align: center;
    display: flex;
    flex-direction:column-reverse;
    background-color: rgb(223, 186, 85,0.6)
  }
}

  .footer{
    position: fixed;
    left:0;
    bottom: 0;
    padding-top: 10px;
    width: 100%;
    background-color: rgb(223, 186, 85);
    color: rgb(250, 249, 247);
    text-align: center;
  }
