body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #a5a5a5;
  color: #333;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.site-header {
  background: #333;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.construction-section {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  max-width: 600px;
  width: 100%;
}

.construction-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.construction-section p {
  font-size: 1.2rem;
}

.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}


/* Log In */

.mainContent.logIn {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  height: fit-content;
  inline-size: fit-content;
  block-size: fit-content;
}

