body {
  font-family: Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  background-color: #f6f6ef;
  color: #000000;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: top;
  height: 100vh;
}

.header {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

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

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.site-name {
  color: #0c7bf2;
  margin-left: 1rem;
}

.logo {
  width: auto;
  height: 5rem;
  object-fit: contain;
  border: 2px solid #ff6600;
  border-radius: 5px;
}

.separator-top {
  width: 100%;
  border-top: 1px solid #000000;
  margin-top: 10px;
}

.main {
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.projects-section {
  width: 100%;
  margin-left: 2rem;
}

h2 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
}

.projects-table td {
  padding: 5px;
}

.footer {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.separator-bottom {
  position: fixed;
  bottom: 40px;
  width: 100%;
  border-top: 1px solid #000000;
  margin-top: 10px;
}

.bottom-right-image {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 78px; /* Set a fixed width */
  height: 22px; /* Set a fixed height */
  overflow: hidden; /* Hide any overflow */
}

.bottom-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the area without distortion */
}
