body,html {
  margin:0;
  box-sizing:border-box;
  min-height: 100vh;
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 100%;
}
.page {
    position:relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: #a5391d 2px solid;
}
a {
    color: #a5391d;
    text-decoration: none;
}
.content {
  justify-content: center; /* Centers items horizontally along the main axis */
  align-items: center;
  display: flex;
  height: 100%;
  width: 1024px;
  align-self: center;
}
footer {
  justify-content: right; /* Centers items horizontally along the main axis */
  display: flex;
  width: 1024px;
  align-self: center;
}
.parent {
    position:relative;
    width: 1024px;
    background: #f9e2d3;
    height: 200px;
    flex-direction: row;
    display: flex;
    border: none;
}
.text {
    position:relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: center;
    flex-grow: 1;
}
.main {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    text-align: center;
    background-color: #f9e2d3;
}
.start {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    background: #a5391d;
}
.end {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f9e2d3;
}
.logo {
    font-size:60px;
    color:#fff;
    width: 200px;
    height: 100%;
    background: #a5391d;
    z-index: 0;
}
.child {
    font-size:60px;
    color:#000;
    width: 200px;
    height: 100%;
    display: block;
    background: #a5391d;
    z-index: 0;
}
.child--absolute {
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    position: absolute;
    top: 0;
    left: 200px;
    clip-path: polygon(101% 0, 0% 101%, 101% 101%);
    background: #f9e2d3;
    z-index: 1;
}
.head {
    display:flex;
    flex-direction: column;
    flex-shrink: 1;
    width: 624px;
    z-index: 3;
}
.head h1 {
    font-size: 1.5em;
    margin-bottom: 0;
}
.head h2 {
    font-size: 1.3em;
    margin-bottom: 0;
    margin-left: -60px;
}
.head h3 {
    font-size: 1.3em;
    margin-bottom: 0;
    margin-left: -90px;
}