/* style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #0080b3;
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 24px

}

header {
  text-align: center;
  padding: 70px;
}

h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

section {
  padding: 60px;
}

h2 {
  font-size: 45px;
  margin-bottom: 10px;
}

ul {
  list-style-type: disc;
  margin-left: 30px;
}

a {
  color: #43969c;
  text-decoration: none;
}

footer {
  text-align: center;
  background-color: #004d80;
  padding: 20px;
}

footer p {
  margin: 0;
}

/* Ocean-themed styles */

header {
  background-image: url('reef_diving.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

section {
  background-color: #002633;
  border-radius: 10px;
}

h2 {
  color: #00b3b3;
}

ul {
  color: #fff;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #002633;
}

footer p {
  color: #00b3b3;
}


.project {
  margin-bottom: 20px;
}

.project h3 {
  margin-top: 10px;
}

.project ul {
  margin-top: 5px;
  margin-bottom: 5px;
}


