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;
}
#copyright{
    text-align:center;
    font-size:10px;
}
.boxdescription{
    padding:5%;
    text-align: center;
    background-color: white;
    font-size: 18px;
    color: #585858;      /*grey*/
    background-color: rgb(251,250,247);
}
.mainbox{      /*box that contains picture and text*/
    grid-template-columns: 1fr 1fr;       /*grid*/
    margin-right: 5%;
    margin-left: 5%;
}
.boximage{     /*float image on the left*/
    float: left;
    padding:1px 6px 1px 1px;
}
h1{
    font-size:90px;
    margin-top:90px;
}
ul{             /*list with no bullets and no padding on the left*/
    list-style-type: none;
    line-height: 1.8;
    padding-left: 0px;
}
.a,.b,.c,.d,.e{
    margin-top: 10px;
}
.white-bg{
    background:white !important;
}
.white-bg a{
    color: #00008B !important;    /*blue*/
}
footer{
    clear: left;
}
      