body {
  overflow: hidden; /* hide scrollbars */
}

.page {
    display: flex;
    flex-direction: column; /* stack vertically */
    min-height: 100vh;       /* full viewport height */
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* center vertically */
    align-items: center;     /* center horizontally */
    gap: 1vw;
}

.content p {
    margin: 0; /* remove default paragraph spacing */
    line-height: 1.2; /* tighter vertical spacing */
}

footer {
    text-align: center;
    font-size: 1.25vw;
}