html {
    scroll-behavior: smooth;
}

main {
  margin-top: 195px; /* or whatever the height of your header is */
}


body {
    font-family: 'Nimbus Sans', sans-serif;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 10px;
    height: 100%;
    /*background-color: #fff5e1;*/
    background-color: #004176;
    min-width: 512px;
    font-size : 100%;
}


.project-webpages {
    /*display: flex; */
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff5e1;
    border: 4px solid #fff5e1; /* Optional border for separation */
    border-radius: 8px; /* Rounded corners */
  }
  
  .project-image-description {
      margin-bottom: 5px;
      border: 2px solid #8f8f8f;
      width: 100%;
  }

  .webpage-box {
    width: 400px;
    padding: 20px;
    border: 1px solid #023d6b;
    border-radius: 10px;
    margin: 20px;
  }
  
  .webpage-box img {
    max-width: 380px;
    max-height: 190px;
    width: auto;
    height: auto;
    margin: 10px auto;
    display: block;
  }

  
  .webpage-box a {
    font-weight: bold;
    color: #337ab7;
  }
  
  .webpage-box p {
    font-size: 14px;
    color: #666;
  }
  
  .project-image-description {
    display: flex;
    align-items: center;
  }
  
  .project-image {
    width: 200px;
    height: 150px;
    margin-right: 20px;
  }
  
  .project-description {
    flex: 1;
  }
 
.legal-page {
    margin: 0 auto;
    padding: 20px;
    background-color: #fff5e1;
    border: 1px solid #ccc; /* Optional border for separation */
    border-radius: 8px; /* Rounded corners */
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Dark text for readability */
}

.legal-page h1 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #004176; /* Match the theme color */
    text-decoration: underline;
}

.legal-page h2 {
    font-size: 25px;
    margin-bottom: 5px;
    color: #004176; /* Match the theme color */
    text-decoration: underline;
}

.legal-page h3 {
    font-size: 20px;
    margin-bottom: 1px;
}

.legal-page p {
    margin-bottom: 2px;
}

.legal-page a {
    color: #004176;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.registration-container {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 2rem;
  background: #fafafa;
  min-width: 350px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.registration-form {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: center;
}

.registration-title {
  text-align: left;
  margin-bottom: 1.5rem;
}