body {
    margin: 0;
    min-height: 100vh;
    background: #f0f0f0 url(./images/BLUE\ SPLASH.jpg);
}  


.header-container{
     position:relative;      /*this create a bounding box for the img */
    height:140px;
    background-color:#FF5E14 ;
    /* text-align: center; */
}
.header-container h1{
    margin:0;
    padding-left:20px;
     line-height: 100px;  /*nuance: create a space above and below to center for 1 line of text */
    }
.floating-img{
    position: absolute;
    top: 30px;
    left: 1000px;

    height: 100px;
    border:3px  solid black;
    border-top-left-radius: 12px;
    border-bottom-right-radius:25px;
}


nav{
    height:100px;
    width: 1200px;
    background-color: #F0F4F5;
    margin:auto;
    border:5px solid #FF5E14;
    border-radius: 10px;
    text-align: center;

}
.navbar-links a{
    text-decoration:none;
    display: inline-block;
    margin-right:25px;
    font-size: 25px;
    font-weight: bold;
    margin-top: 8px;
}
main{
    height:300px;
    background-color: #12544F;
    border:1px solid #FF5E14;
    border-radius: 10px;
    
}
footer{
    height:90px;
    background-color: #FFFFFF;
    border:1px solid #FF5E14;
    border-radius: 10px;
}