body{
  background-color: linen;
  text-align: center;
  margin: 0 5px;
}
a {
  color: royalblue;
}
a:hover {
  color: coral;
}
a:visited {
  color: royalblue;
}
a:active {
  color: gold;
}
h2{
  font-weight: bold;
  font-size: 24px;
  padding: 10px;
  margin: 10px auto;
  max-width: 750px;
  min-width: fit-content;
  color: #222222;
  background: tan;
}
p {
  font-size: 18px;
  line-height: 1.5;
  margin: 10px auto;
  max-width: 600px;
  min-width: fit-content;
}
hr {
  max-width: 10px 0;
  max-width: 750px;
}
img {
  max-width: 100%;
  height: auto;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}
.map-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
}
.map-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}
.link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 10px 3px;
}
span.abr {
  display: inline-block;
}