body {
	background-color: white;
}
body,td,th {
	font-family: "Myriad Pro", "Myriad Pro Bold", Garamond;
}
body {
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
header {
    text-align: center;
    padding: 20px 0;
}
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.project {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.2s;
}
.project:hover {
    transform: scale(1.05);
}
.project img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.project h3 {
    margin-top: 10px;
    font-size: 1.2em;
}
.infos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.info {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.2s;
}
.info:hover {
    transform: scale(1.05);
}
.info img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.info h5 {
    margin-top: 10px;
    font-size: 0.9em;
}
.preview {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.2s;
}
.preview img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    font-size: 0.9em;
    background: #f0f0f0;
}
body,td,th {
	font-family: "Myriad Pro", "Myriad Pro Bold", Garamond;
	font-size: 12pt;
	color: #000;
	font-weight: bold;
}
a {
	font-family: "Myriad Pro", "Myriad Pro Bold", Myriad Pro Bold;
	font-size: 1.1em;
}
a:link {
	color: #000;
}
a:hover {
	color: turquoise;
}
/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Navigation bar styling */
.navbar {
  display: flex;
  justify-content: space-between; /* Space between left and right items */
  align-items: center;
  padding: 10px 20px;
  background-color: #333; /* Dark background */
  color: white;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #f4f4f4; /* Slightly lighter hover effect */
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .links {
  display: flex;
}

/* Responsive hamburger menu (for mobile devices) */
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.navbar .hamburger span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .navbar .links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
  }

  .navbar .links.active {
    display: flex;
  }

  .navbar .hamburger {
    display: flex;
  }
}

