/*

colors

#33cc33 - medium green

#145214 - dark green

#c2f0c2 - light green

#ff9900 - medium orange

#995c00 - dark orange

#ffe0b3 - light orange

#0099ff - medium blue cyan

#99d6ff - light blue

rgba(144, 238, 144, 0.4) - light green

#fff - white
*/


*{
    box-sizing: border-box;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  outline: #145214 solid 2px;
}

.logo{
  position: fixed;
  top: 10px;
  left: 10px;
  
}

@media (max-width: 800px) {
  .logo img {
    height: 60px;
    width: 90px;
  }
}

nav{
  margin-top: 20px;
  margin-bottom: 30px;
}

nav a {
    background-color: #145214;
    color: white;
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  nav a:hover {
    background-color:#33cc33 ; 
  }

.main{
  text-align: center;
   max-width: 60%;
   margin: 0 auto;
   padding-top: 10px;
   padding-left: 15px;
   padding-right: 15px;
    background: linear-gradient(to bottom, rgba(144, 238, 144, 0.5), rgba(144, 255, 0, 0.5) ) 

}

ul{
  list-style-image: url(images/bullet.jpeg);
}

.float-right{

  float:right;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 50%;
  height: auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;

}

section{
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}

body {
  margin-top: 15px;
  margin-bottom: 15px;
    background-image: url("images/island.jpeg");
    background-size: cover;
    background-attachment: fixed;
  }

table {
  margin: 0 auto;
  text-align: center;         
}  

footer{
    color: #fff;
    text-align: center;
    padding-bottom: 10px;
    text-decoration: underline;
}

/*
* {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h1{
text-align: center;
}

body {
  font-family: Cambria, serif;
  margin: 0;
  padding: 0;
  background: url('images/island.jpeg') no-repeat center center fixed;
  background-size: cover;
  line-height: 1.5;
  color: #000;
  text-align: left;
}

img {
  border: 2px solid #145214;
}

img[src*="island.jpeg"] {
  border: none;
}

header, nav, main, footer {
  width: 60%;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(144, 238, 144, 0.5), rgba(144, 255, 0, 0.5));
  padding: 20px;
}

header {
  padding-top: 20px;
}

nav a {
  color: white;
  background-color: #145214;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 5px;
  display: inline-block;
}

nav a:hover {
  background-color: #33cc33;
}

footer {
  color: white;
  margin-top: 20px;
  text-align: center;
}

.logo {
  position: absolute;
  top: 10px;
  left: 10px;
}

.logo img {
  height: 100px;
  width: 150px;
}

main img {
  max-width: 400px;
  max-height: 300px;
  width: auto;
  height: auto;
}


@media (max-width: 800px) {
  .logo img {
    height: 60px;
    width: 90px;
  }
}

.float-right {
  float: right;
  margin: 10px;
  clear: both;
}

.bullet-list {
  list-style-image: url('images/bullet.jpeg');
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  padding-left: 20px;
}

table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 80%;
}

th, td {
  border: 1px solid #145214;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
}
*/