@font-face {
    font-family: 'ductus';
     src: url('fonts/ductus/DuctusRegular.eot');
    src: url('fonts/ductus/DuctusRegular.eot?#iefix') format ('embedded-opentype');
    src: url('fonts/ductus/DuctusRegular.woff') format('woff');
   src:url('fonts/ductus/DuctusRegular.ttf') format('truetype');
    font-weight:regular;
    font-style:normal; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'ductus';
    /*Arial, Helvetica, sans-serif;*/
}


#navbar {
    overflow: hidden;
    background-color: white;
    /* Black background color */
    position: fixed;
    z-index: 999;
    /* Make it stick/fixed */
    top: 0;
    /* Stay on top */
    width: 100%;
    /* Full width */
    transition: top 0.3s;
    /* Transition effect when sliding down (and up) */
    border-bottom : 1px solid #92579b;
   
}

#navbar a {
    float: left;
    margin-left: 2%;
    color: #92579b;
    text-align: center;
    padding: 1%;
    text-decoration: none;
    font-size: 22px;

}

#navbar a:hover {

    color: #61ffa1;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 40px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: black;
}

.overlay .closebtn {
  position: absolute;
  top: 22px;
  right: 45px;
  font-size: 68px;
}


@media screen and (max-height: 450px) {
  .overlay a {font-size: 40px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.menu {
    float:right;
    margin-right: 3%;
    margin-top: 0.7%;
}

.menu span:hover {
    color: black;
}

.row {
    padding-right: 1.5%;
    padding-left: 2%;   
    background-color: white;
    
}

.row,
.row > .column {
    margin-top: 4em;
    padding-bottom: 1%;
    margin-right: 2%;
    
}

.column {

    float: left;
    width: 50%;
 

}

.column img {
    width: 100%;
    border-spacing: inherit;
    height: auto;
    backface-visibility: hidden;
    border: 1px solid #92579b;
}

.column img:hover {
    border: 3px solid #61ffa1;
 
}

p {
    color: #92579b;
    margin-bottom: 4%;
    
}

p1 {
    color: #92579b;
    margin-bottom: 2%;
    
}

h1 {
    color: #92579b;
    margin-bottom: 6%;
    
}

p3 {
    color: #92579b;
    margin-bottom: 2%;
}




.row:after {
    content: "";
    display: table;
    clear: both;

}

@media screen and (max-width: 768px) {
.column {width: 100%; }
#navbar a {
   
    padding: 2%;
    font-size: 22px;
}
}