/*
defeat box model
*/
*{
    box-sizing: border-box;
}
/* adds backgraound color to the body and selectes font-family for webpage*/ 
body{
    background-color:#aad4cf;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
/* adds width and position to  headers */
header{
    width: 100%;
    position: relative;
}
/* adds style to image */
header img{
    width: 100%;
    height: 240px;
    padding: 0;
    margin: 0;
}
/* adds style headings */
.container {
    position: relative;
    color:white;
    font-size: 18px;
    height: 240px;

  }
  /* make the headings centered */
.centered {
    width: 75%;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
  
}

/* adds width to navbar */
.navigation{
    width: 100%;
    margin: 8px;
    overflow: auto;
}
/* adds style to navbar links */
.navigation a{
    text-decoration: none;
    border-right: 1px solid grey;
    float: left;
    padding: 12px;
    color: black;
    text-decoration: none;
    font-size: 17px;
    width: 33.33%; 
    text-align: center; 
 }
 /* adds backgraound color while hover on link*/ 
.navigation a:hover{
    background-color:azure;
    cursor:pointer
}

/* removes border from last link*/ 
.navigation a:last-child {
    border-right:0;
}
/* adds background color and centers the div*/ 
.wrapper{
    background-color:rgb(216,232,231);
    width: 80%;
    margin: 0 auto;
}
/* adds style to image */
img{
    width: 150px;
    float: left;
    margin: 8px;
}
/* adds style to headings */
.abtStarfish h3{
    margin: 8px;
}
/* adds padding to the paragraph  */
.abtStarfish p{
    padding: 4px;
}

/* maintains the position after adding float property to elements*/
.clearFix::after{
    content: '';
    display: block;
    clear: both;
}

/* adds padding to the Facts*/
.facts{
    padding: 3px;
}
/* adds margin to headings */
.facts h3{
    margin: 8px;
}
/* adds margin headings */
.contact h3{
    margin: 8px;
}
/* adds border to from and style to the input and style to the button */
#form{
    border: 1px solid black;
    padding:15px 10px;
    margin: 8px;
}
.info{
    width: 100%;
}
.info input{
    width: 100%;
}
.info textarea{
    width: 100%;
}

.btn{
    margin-top: 5px;
    padding: 2px;
}
button{
    border: 1px solid black;
    width: 50px;
    height: 35px;
    background-color:rgb(216,232,231);
}
/* adds style to footer*/
footer{
    padding: 10px;
    text-align: right;
}
