html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
    font-family: 'Helvetica', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.3rem;
}
h1 {
    text-align: center;
}
a {
    color: #E9008F;
}
.header {
    height: 250px;
    background-image: url('Banner.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.menu {
    margin: 20px 0 0 0;
    text-align: center;
}
.menu .menu-item {
    margin: 0 5px;
}
.menu .parallelogram {
    display: inline-block;
    min-width: 50px;
    height: auto;
    overflow: hidden; 
    border-radius: 8px;
    transform: skewX(-35deg);
    align-items: center;
    justify-content: center;
    border: 2px solid #80004B;;
    background: #E89DCB; /*#F00193;*/
}
.menu .parallelogram:hover {
    background: #E8D0DF; /*#F00193;*/
}
.menu .parallelogram > a {
    transform: skewX(35deg);
}
.menu .menu-item > a {
    display: inline-block;
    padding: 10px 20px 10px  20px;
    font-weight: bold;
    text-decoration: none;
    color: #730146;
}
/* 1. Turn the container into a full-height flex column in order to let the footer be "sticky" to the bottom */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Takes up at least 100% of the viewport height */
}
/* 2. Tell the content wrapper to grow and absorb all available space */
.content-wrap {
  flex: 1; /* Shorthand for flex-grow: 1; flex-shrink: 1; flex-basis: auto; */
}
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}
.footer {
  padding: 3px 0;
  flex-shrink: 0; /* Prevents the footer from squishing on tiny screens */
  background: #F00193; /*#F00193;*/
  border: 1px solid #80004B;;
  color: white;
  text-align: center;
}
.column-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Creates two equal columns (1 fraction space each) */
  gap: 20px; 
}
.column {
  padding: 15px;
  background-color: #f4f4f4;
}