/* Background */
body {
  background-color: #fffcce;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
}

/* Header */
header {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/99/Flag_of_the_Philippines.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 47%;      
  text-align: left;
}

/* Title */
header h1 {
  color: #fcd116;       
  font-size: 2.5em;
  font-weight: bold;
  margin-top: -0.2em;    
}

/* Navigation Links */
nav {
  margin-top: 2.5em;
  display: flex;
  justify-content: center;
  transform: translateX(6em);
 }

nav a {
  color: #ffffff;
  font-size: 1.50em;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

