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;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a:hover {
  text-decoration: underline;
}

main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  padding: 20px;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  main {
    grid-template-columns: 1fr;
  }
  .left, .center, .right {
    width: 100%;
  }
}
section {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

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

a[href^=http] {
  color: red;
}

nav ul > li:first-child a {
  color: rgb(0, 0, 0);
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.left img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.right img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.center img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}/*# sourceMappingURL=style.css.map */