body {
    background-color: #BFBFBF;
    margin: 0;
    padding: 0;
}

.counter {
    background-color: #000000;
    color: #00FF00;
    font-family: courier, fixed;
    padding: 1px;
    font-weight: bold;
    margin-right: 1px;
}

#main {
    font-family: "Times New Roman", Serif;
    font-size: larger;
}

#header {
    font-size: x-large;
    border-style: solid;
    border-width: 4px;
    background-color: lightsteelblue;
}

.bigletter {
    font-size: xx-large;
}

.stamps {
    padding-top: 10px;
    float: none;
}

.stamp {
    display: inline-block;
}

.w20 {
    width: 15%;
}

.w40 {
    width: 40%;
}

.w70 {
    width: 70%;
}

.w100 {
    width: 100%;
}



.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-size: xx-large;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media all and (min-width:801px) {
    .maxwidth {
        max-width: 760px;
        margin: 10px;
        padding: 10px;
    }

    .hideondesktop {
        display: none;
    }

    #sample td:nth-child(1) {
        width: 20%;
    }

        #sample td:nth-child(1) a {
            text-decoration: none;
            color: inherit;
        }

            #sample td:nth-child(1) a:hover {
                cursor: inherit;
            }


    #sample td:nth-child(2) {
        width: 20%;
        color: inherit;
    }

    #sample td:nth-child(3) {
        width: 15%;
    }

    #sample td:nth-child(4) {
        width: 15%;
    }

    #sample td:nth-child(5) {
        width: 15%;
    }

    #sample td:nth-child(6) {
        width: 15%;
    }
}

@media all and (max-width: 800px) {
    .maxwidth {
        max-width: 660px;
        margin: 10px;
        padding: 10px;
    }

    .hideonmobile {
        display: none;
    }

    #sample td:nth-child(1) {
        width: 50%;
    }

    #sample td:nth-child(2) {
        width: 50%;
    }

    #sample td:nth-child(3) {
        display: none;
    }

    #sample td:nth-child(4) {
        display: none;
    }

    #sample td:nth-child(5) {
        display: none;
    }

    #sample td:nth-child(6) {
        display: none;
    }

    #sample th:nth-child(3) {
        display: none;
    }
}
