* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  background-color: #2c3441;
  color: whitesmoke;
  height: 200px;
  min-width: 500px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
}

header img {
  padding: 10px 0;
}

.header-img-imrg-logo {
  height: 200px;
}

.area2 {
  font-family: 'Trade Winds';
  font-size: 18px;
  align-content: center;
  height: 200px;
}

header a:link {
  color: whitesmoke;
  text-decoration: none;
}

header a:hover {
  color: red;
}

header a:visited {
  color: whitesmoke;
}

header div a h4 {
  font-family: 'Carter One';
}
.header-img-imt-logo {
  height: 150px;
}

.banner {
  display: flex;
  flex-wrap: nowrap;
  font-family: 'Carter One';
  font-weight: 200;
  color: whitesmoke;
  justify-content: center;
  height: 50px;
  min-width: 500px;
  width: auto;
  background-color: #888787;
  border-radius: 5px;
}

.main {
  background-color: #777676;
  min-width: 500px;
  width: auto;
  min-height: 600px;
  height: auto;
  border-radius: 5px;
  padding: 5px;
}

.rundezvous-page {
  margin-top: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 24px;
  color: whitesmoke;
}

.rundezvous-page h2, .rundezvous-page h3 {
  text-align: center;
  margin-bottom: 15px;
}

.rundezvous-page p {
  margin-bottom: 10px;
}

.main-heading {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(3, 1fr); */
  justify-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: whitesmoke;
}

.main-heading-header-left {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.main-heading-header-right {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
}

.main-heading-date-left {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.main-heading-date-right {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
}

.main-heading-location-left {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

.main-heading-location-right {
  grid-column: 5 / 7;
  grid-row: 3 / 4;
}

tr.spaceover > td {
  padding-top: 7px;
}

tr.spaceleft > td {
  padding-left: 65px;
}