*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.box{
    width: 100%;
    height: 30%;
}
.footer{
    background-color: red;
    height: 400px;
    width: 100%;
    padding-top: 10px;
}
h1{
    
    margin-top: 10%;
    margin-bottom: 10%;
}
.header{
    display: flex;
    position: fixed;
    justify-content: space-between;
    height: 5%;
    width: 100%;
}
.header >div{
    background-color:green;
    text-align: center;
    font-size: large;
    color: white;
    padding: 10px;
}
.image{
    max-width: 100%;
}
.section-1{
    height: 100vh;
    background-image: url("./background.jpg");
    background-attachment: fixed;
    background-size: cover;

}
.section-2{
    background: white;
    text-align: center;
}
.section-3{
    height: 100vh;
    background-image: url("./background2.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;

}
.section-4{
    display: inline-block;
}
.section-4 >img{
    width: 100;
}


/* HEADER STYLE */

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    width: 100%;
  }
  
  li {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change the link color to #111 (black) on hover */
  li:hover {
    background-color: #111;
  }