/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* NavBar Animation*/
nav img, .social-icon {
  opacity: 0;
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: forwards;
}

/* NavBar */
nav {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #ffffff00;
  
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  max-height: 50px;
  max-width: 100%;
}

.menu-left, .menu-right {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.menu-left a, .menu-right a {
  margin: 0 10px;
}

ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-left: 1rem;
}

a {
  text-decoration: none;
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: 700;
  color: #000000;
}


/* set the background color to #FFFCF6 */
body {
  background-color: #FFFCF6;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: 700;
  text-align: center;
}

p {
  font-family: 'Quattrocento Sans', sans-serif;
}

/* Footer */
#footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 6rem; /* Footer height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff00;
}

.social-icon {
  color: black;
  font-size: 36px;
  margin: 0 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer animation*/
.social-icon {
  animation-name: fadeIn-footer;
}

@keyframes fadeIn-footer {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
