* {
  box-sizing: border-box;
}

/* Style the body */
body {
   font-family: 'Montserrat', sans-serif;
  font-size: 2vh;
  margin: 0;
  background-color:#f8f4f2;
  color: #36271e;
}

/* Header/logo Title */
.header {
  padding: 80px;
  text-align: center;
  background: url("pano.JPG") no-repeat center;
  background-size: cover;
  display: table;
  width: 100%;
  height: 100vh;
}

.hero-text-wrapper {
    display: table-cell;
    vertical-align: middle;
}


.hero-text {
  margin: 0 auto;
  padding: .625rem;
  color: #36271e;
  background: hsl(0, 0%, 95%, .5);
  width: 35vh;
  border-radius: 5px;
  
  
}


#hero{
  font-family: 'Great Vibes', cursive;
  font-weight: normal;
  font-size: 5vh;
}





/* Increase the font size of the heading */
.header h1 {
  font-size: 5vh;
   
}


/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  padding: 20px;
}

/* Main column */
#main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #e6dbd3;
  width: 100%;
  padding: 0;
  text-align:justify;
  box-shadow: 2px 1px 6px #a39d7c;
}

img {
     width: auto;
     height:30vh;
     display: block;
     margin-left: auto;
     margin-right: auto;
     border-radius: 50%;
     border-style: solid;
     border-color:darkred;
     border-width: 0.2vh;
     opacity: 0.9;
  
}

p {text-align:justify;
      
}


h2{ font-size: 3vh;
    font-variant: small-caps;
{





/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other *  (max-width: 700px)/
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
 
   }

}


