body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0c0c0c;
    font-family: "Fira Code", monospace;
    font-weight: 100;
    color: #d4d4d4;
    overflow: auto;
}
h1 {
    font-size: 70px;
    color: #fff;
}
h2 {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
}
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 20px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
.button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
a.link {
    font-size: 10px;
    text-decoration: none;
    display: inline-block;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.5);
}
a.link:hover {
    text-decoration: underline;
}
.card {
    max-width: 920px;
    max-height: 100vh;
    overflow: auto;
}
