body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

header {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

nav {
  background: #fe0808;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
}
nav ul li a:hover {
  text-decoration: underline;
}

main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: 20px;
}
main > section {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
main > section:nth-of-type(2) {
  grid-row: span 2;
}
main > section img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.left {
  display: grid;
  grid-template-rows: 1fr 2fr;
  align-items: start;
}
.left .nested-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.left .nested-grid .nested-item {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.center {
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  text-align: center;
}
.center h2 {
  margin-bottom: 20px;
}
.center p {
  margin: 50px;
}
.center img {
  margin-bottom: 20px;
}
.center form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.center form label {
  margin-top: 10px;
  font-weight: bold;
}
.center form input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.center form button {
  margin-top: 15px;
  background: #fe0808;
  color: #fff;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
}
.center form button:hover {
  background: #d20101;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
}
table th, table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
}
table th {
  background-color: #000000;
  color: #fff;
}
table tr:nth-child(even) {
  background-color: #f2f2f2;
}
table tr:hover {
  background-color: #ddd;
}

/* Media Queries */
@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  .left, .center, .right {
    width: 100%;
  }
}
@media (max-width: 480px) {
  main {
    display: flex;
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  nav ul li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}
footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 1rem;
}/*# sourceMappingURL=style.css.map */