html, body {
    height: 95%;
    background: olivedrab;
    font-family: Cambria,Georgia,serif;
}

a:hover {
    cursor: pointer;
}

div.card {
    position:relative;
    margin: auto;
    padding: 10px;
    border: 3px solid black;
    background: whitesmoke;
}

@media (orientation: landscape) {
    div.card {
        width: 440px;
        height: 180px;
        top: calc( (95% - 180px) / 2);
    }
}

@media (orientation: portrait) {
    div.card {
        width: calc(100% - 60px);
        height: 240px;
        top: calc( (95% - 240px) / 2);
    }
}

h2 {
    margin: 0px;
    font-size: 2em;
}

h3 {
    margin: 0px;
    font-size: 1.5em;
}

h4 {
    margin-top: 25px;
    font-size: 1.17em;
    font-weight: normal;
}

.button {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.pressed {
    transform: scale(0.95)
}

#refreshButton {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 10px;
}

#copyButton {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 10px;
}
