table, th, td {
    border: 1px solid teal;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
}

table, h1 {
    margin: auto;
}

h1 {
    font-variant: small-caps;
    text-align: center;
}

.open {
    color: limegreen;
    font-weight: bold;
    text-align: center;
}

.closed {
    color: red;
    font-weight: bold;
    text-align: center;
}

.stamp, #next_in {
    font-family: monospace;
}

.stamp {
    cursor: pointer;
}

.stamp:active {
    outline: 1px solid white;
}

.stamp:after {
    content: " \29C9";
    font-size: "large";
}

.caption {
    font-size: small;
    color: grey;
    font-style: italic;
}

body {
    color: white;
    background: black;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-family: sans-serif;
}

#made_by {
    position: fixed;
    bottom: 0;
    right: 0;
}

.copy_pop {
    position: absolute;
    float: right;
    transform: translateX(50%);
    animation: 1s rise;
}

@keyframes rise {
    from {
        padding-bottom: 0;
    }
    to {
        padding-bottom: 20;
    }
}
