body {
    background: rgb(7, 7, 7);
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

p {
    text-align: center;
    color: white;
    font-size: large;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    margin-top: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: white;
    font-size: 49px;
    transform: scale(0.9, 1.2);
    margin-bottom: 6px;
}

h2 {
    margin-top: 0;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: larger;
}

h3 {
    font-family: monospace;
    padding-top: 17px;
    font-size: 17px;
    margin: 0;
    display: none;
}

h3 {
    margin-top: 0;
    color: white;
}

/*-------*/

#contentholder {
    width: 800px;
    margin: 0 auto;
}

#comicblurb {
    width: 25%;
    vertical-align: top;
    text-align: center;
}

#issuedisplay {
    vertical-align: top; 
}

.buttonholder {
    width: calc((100% / 3) - 17px);
    display: inline-block;
    padding: 6px;
}

.issuebutton {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: inline-block;
}

.popup {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 50px;
    padding-top: 8px;
    position: relative;
}

.popuptext {
    visibility: hidden;
    position: absolute;
    background-color: white;
    top: -30px;
    left: -101px;
    padding: 8px 8px;
    border-radius: 6px;
    cursor: text;
}

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.popup .show {
    visibility: visible;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}

#blogdisplay {
    width: 100%;
}

#direct{transition: all .2s ease-in-out;}
#direct:hover{transform: scale(1.1);}

/*-------*/

@media all and (max-width:1040px){
    body {
        padding: 3%;
    }

    td {
        display: block;
        margin: 0 auto;
    }

    #contentholder {
        width: 100%;
    }

    #comicblurb{
        width:100%;
    }

    .buttonholder {
        width: 100%;
    }

    #direct:hover{transform: scale(1.0);}
}