html,
body {
    font-family: sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-size: 14px;
    min-height: 100vh;
}

main {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    overflow: auto;
    box-sizing: border-box;
    width: 100%;
}

a {
    text-decoration: none;
}

.content {
    padding: 24px 40px;
    width: 100%;
    max-width: 700px;
}

.footer {
    background-color: rgb(36, 36, 36);
    color: #ffffff;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.footer a:hover {
    color: #ababab;
}

.footer a:visited {
    color: #ffffff;
}