/*==========GLOBAL===========*/
@font-face {
  font-family: 'CopperplateGothicBold';
  src: url('../fonts/CopperplateGothicBold.ttf') format('truetype');
}

body {
  background-color: #349afcff; /* Blue background */
  font-family: 'CopperplateGothicBold', sans-serif;
}

/*=========END GLOBAL =========*/

/*==========CONTAINER===========*/
.container {
  max-width: 90%;
  margin: 32px auto;
  padding: 40px;
  background-color: #fff; /* White container */
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*=========END CONTAINER =========*/

/*==========NAVIGATION===========*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
  margin: auto;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-links li {
  margin-right: 10px;
}

.nav-links li:last-child {
  margin-right: 0; /* Remove margin from last item */
}

.nav-links a {
  text-decoration: none;
  color: #349afcff; /* Blue links */
  transition: color 0.5s ease;
}

.nav-links a:hover {
  color: #008000; /* Green hover */
}

@media only screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/*=========END NAVIGATION =========*/

/*==========HEADER BANNER===========*/
.header-banner {
  width: 98%;
  margin: 40px auto 20px auto;
  border-top: 0px solid #000;
  border-bottom: 0px solid #000;
  position: relative;
}

.header-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.website-url {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: 1rem;
}

/*=========END HEADER BANNER =========*/

/*==========HEADINGS===========*/
h1 {
  text-align: center;
}

/*=========END HEADINGS =========*/

/*==========CONTENT CONTAINER===========*/
.content-container {
    max-width: 98%; /* Match the banner's width */
    margin: 0 auto;
   font-family: Arial, sans-serif; 
}

/*=========END CONTENT CONTAINER =========*/

/*==========LOGO ANIMATION===========*/
.logo-animation {
  text-align: center;
  margin: 40px 0;
}

/*=========END LOGO ANIMATION =========*/

/*==========LINKEDIN ICON===========*/
.linkedin-icon {
  text-align: center;
  margin-bottom: 20px;
}

.linkedin-icon img:hover {
  transform: scale(0.8);
  opacity: 0.5;
}

/*=========END LINKEDIN ICON =========*/

/*==========FOOTER===========*/
.blue-line {
  width: 80%;
  height: 1px;
  background-color: #0000ff;
  margin: 20px auto;
}

.footer-links {
  text-align: center;
  margin-bottom: 20px;
}	

.footer-links a,
.copyright a {
  text-decoration: none;
  color: #349afcff;
  transition: color 0.5s ease;
  margin: 0 20px;
}

.copyright {
  text-align: center;
}

.footer-links a:hover,
.copyright a:hover {
  color: #008000;
}

/*=========END FOOTER =========*/
