body {
  background-color: rgb(4, 28, 116);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: yellow;
}

header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem 1rem;
  flex-wrap: wrap;
  text-align: center;
}
header img {
  width: 200px;
  height: 200px;
}
header h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  color: yellow;
  margin: 1rem;
}

h2 {
  color: yellow;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

h3, h4, p {
  color: yellow;
  margin: 0.5rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
}

.column {
  flex: 1 1 200px;
  max-width: 220px;
  margin: 1rem;
  text-align: center;
}
.column img.gallery {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px yellow;
}
.column h4 {
  font-size: 1.1rem;
}
.column p {
  font-size: 0.9rem;
}

.row-with-event {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
  align-items: flex-start;
}

.free-event {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3rem;
  font-weight: bold;
  color: yellow;
  font-family: "Times New Roman", Times, serif;
  padding: 1rem;
  background-color: rgb(4, 28, 116);
  text-align: center;
}

a {
  color: yellow;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}
a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 3rem;
  text-align: center;
}
footer img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 1rem auto;
  display: block;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
  }
  header h1 {
    font-size: 1.8rem;
  }
  img {
    max-width: 100px;
  }
  .row {
    margin: 1rem auto;
  }
  .column {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 1rem auto;
  }
  .column img.gallery {
    box-shadow: none;
  }
  .column h4, .column p {
    font-size: 0.9rem;
  }
  .free-event {
    font-size: 2rem;
    padding: 0.5rem;
  }
  footer img {
    width: 95%;
  }
  h2 {
    font-size: 1rem;
    padding: 0 1rem;
  }
}/*# sourceMappingURL=style.css.map */