html,body {
    padding:0;
    margin:0;
    font-family:avenir;
}
#navbar{
    background: linear-gradient(55deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 85%);   /*gradient background on scroll*/
    position: fixed !important; 
    height:50px;
    width:100vw;
    top:0;
    left:0;
    background:transparent;
    font-size: 15px;
    font-weight:600;
    padding-top: 10px;
    transition:all 0.9s ease;
    z-index: 999;
}
#navbar a{
    text-decoration: none;
    padding: 10px 20px;
    float:right;
    color: white;
}
#navbar img{            /*logo in the navbar on the left*/
    float:left;
    height: 40px;
}
p{
    color: #585858;      /*grey*/
}
#hero{
    height:55vh;
    width:100vw;
    background-image:url("images/about.jpeg");
    background-repeat:no-repeat;
    background-attachment: fixed;
    background-size:cover;
    background-position:center;
    text-align:center;
    padding-top:150px;
    letter-spacing:1px;
    line-height:200%;
    font-weight:300;
    color:white;
}
h1{
    font-size:90px;
    margin-top:90px;
}
h2{
    margin-top:-1%;
    font-size:30px;
    color: #585858;      /*grey*/
}
.white-bg{
     background:white !important;
}
.white-bg a{
      color: #00008B !important;        /*blue*/
}
#mainbox{      /*box that contains picture and text*/
    border: 0px;
    border-color: white;
    border-style: solid;
    padding: 10px 10px 10px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: rgb(251,250,247);    /*sand*/
    margin-right: 0px;
    margin-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #585858;
}
#boxtext{      /*box that contains text*/
    text-align: center;
    color:black;
    font-size:17px;
    font-family:avenir;
    width: 400px;
    margin-right: 30px;
    margin-left: 30px;
}
#boximage1{     /*float image on the left*/
    float: left;
}
#boximage2{     /*float image on the left*/
    float: right;
}
#copyright{     /*copyright centered*/
    text-align:center;
    font-size:10px;
}

