html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans;
    font-size: 18px;
    background-color: #e52838;
    color: #fff;
}

main {
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

main > div {
    padding: 20px;
    max-width: 640px;
    max-height: calc(100% - 50px);
    overflow-y: auto;
    scrollbar-width: thin;
}

p {
    font-size: 24px;
    font-weight: 300;
}

footer {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #ffd3c6;
    font-weight: 300;
    padding: 20px;
}

footer a {
    color: #ffd3c6;
}
footer a:hover {
    color: #fff;
}

::-webkit-scrollbar
{
  width: 6px;
}

::-webkit-scrollbar-track
{
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb
{
  background: #ffd3c6;
}
