body {
    background-color: #111;
}

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

h1 {
    color: #fff;
    text-align: center;
}

h2 {
    color: #fff;
    text-align: center;
}

.mapsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mapContainer {
    margin: 1rem;
}

.mapImage {
    object-fit: cover;
    width: 25rem;
    height: 15rem;
    border-radius: 12px;
    outline: #fff solid 2px;
    transition: 0.3s;
}

.mapImage:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.3s;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  background-color: #1a1a1a;
  color: #eeeeee;
  margin: 20px 0;
}

thead {
  background-color: #333333;
}

th {
  text-align: left;
  padding: 12px 15px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid #2d2d2d;
}

tr:nth-child(even) {
  background-color: #222222;
}

tr:hover {
  background-color: #2a2a2a;
}

.favouritemoon {
    color: #ffcc00;
}

.footerText {
    color: #fff;
    text-align: center;
    margin-top: 5rem;
}