* {
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    background: #313131;
    height: 100vh;
    font-family: Monospace;
    overflow-x: hidden;
    margin: 0;
}

main {
    display: inline-table;
    background: rgba(255, 255, 255, .9);
    color: #313131;
    padding: 30px;
    max-width: 400px;
    box-shadow: 0 0 28px rgba(0, 0, 0, .2);
    border-radius: 25px;
    width: calc(100% - 80px);
    word-wrap: break-word;
}

footer {
    color: rgba(255, 255, 255, .9);
}

h1 {
    margin: 0 0 20px 0;
}

a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

p {
    margin: 0;
}