html, body {
    height: 100%;
}
body {
    margin: 0;
    font-family: "Open Sans",Arial,sans-serif;
}
a:link {
  color: black;
  cursor: pointer;
  text-decoration: none;
}
a:visited {
  color: black;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: black;
  cursor: pointer;
  text-decoration: none;
}
a:active {
  color: black;
  cursor: pointer;
  text-decoration: none;
} 
.flex-center {
    height: 94%;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.flex-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}
.flex-item-center {
    flex: 0 1 auto;
    align-self: center;
}
.flex-item-bottom {
    flex: 0 1 auto;
    align-self: flex-end;
    margin: 5px;
}
.break {
  flex-basis: 100%;
  height: 10px;
}
.flex-rosabox {
    background-color: #e2007a;
    padding: 5px 19px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.25em;
    height: 2em;
    width: 160px;
    text-align: center;
    font-weight: bold;
    font-weight: 800;
    font-family: "Open Sans",Arial,sans-serif;
    box-sizing: border-box;
    border-radius: 4px;
    flex: 0 1 auto;
    align-self: center;
    page-break-after: always; /* CSS 2.1 syntax */
    break-after: always; /* New syntax */
}
.flex-rosabox a:link {
    color: #fff;
    text-decoration: none;
}
.flex-rosabox a:visited {
    color: #fff;
    text-decoration: none;
}
.flex-rosabox a:hover {
    color: #fff;
    text-decoration: none;
}
.flex-rosabox a:active {
    color: #fff;
    text-decoration: none;
}

