body {
  background-color: #333;
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
}

.topbar {
  background-color: #6fe156;
  height: 64px;
  top: 0;
  left: 0;
  right: 0;
  position: sticky;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 8px;
  gap: 25px;
  z-index: 100;
}

.topbar a {
  background-color: #46d426;
  padding: 16px;
  border-radius: 16px;
  font-size: large;
  text-decoration: none;
  width: 128px;
  color: white;
  text-align: center;
  transition: background-color 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.topbar a:hover {
  background-color: rgb(88, 180, 67);
  transform: scale(1.1);
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer {
  background-color: #222;
  height: 128px;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.link {
  color: rgb(0, 153, 255);
}

.spacer-64 {
  height: 64px;
}

.hexMap {
  width: 400px;
  height: auto;
}

.media-sections {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.media-sections div {
	width: 48%;
}

video,
.flag {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	height: auto;
	object-position: left;    /* Anchors the image to the left */
  	border-radius: 16px;
}

.logo {
  position: absolute;
  height: 64px;
  right: 16px;
  top: 8px;
}

@media (max-width: 500px) {
	.topbar a {
		padding: 8px;
	}
	.topbar {
		height: auto;
	}
  .hexMap {
	width: 100%;
  }
}
@media (max-width: 1000px) {
  .media-sections div {
	width: 100%;
  }
  .media-sections {
	flex-direction: column;
	align-items: center;
  }
  video, .flag {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
  }
  .logo {
    display: none;
  }
}

#f60precwid {
  width: 60%;
}