html, body {
    font-size:16px;
    height:100%;
    width:100%;
}


@media screen and (min-width: 1500px) {
    body {
        background-image: url('/images/SH-big.jpg');
    }
}
@media screen and (max-width: 1499px) {
    body {
        background-image: url('/images/SH-med.jpg');
    }
}
@media screen and (max-width:800px) {
    body {
        background-image: url('/images/SH-sml.jpg');
    }
}
body {
    margin:0;
    background-attachment: fixed;
    background-size:cover;
    background-position: center;
    height:100vh;
    min-height:100vh;
    display: flex;
}


.tableOuter {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
}

.contents {
    width:70%;
    min-width:300px;
    max-width:750px;
    background-color: rgba(250,250,250,0.95);
    padding:1rem;
    border-radius: 1rem;
    border:3px solid #006;
    background-color: #ffc;
    text-align: center;
    line-height: 1.4rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1.125rem;
    font-weight: bold;
    color: #000;
    margin:0;
    opacity: 0.8;
}
.contents h1 {
    font-size: 2.75rem;;
    line-height: 3rem;
    margin: 0;
    padding: 0.25rem 0.25rem 0.35rem;
    text-align: center;
}
.contents h2 {
    color:#00056b;
    font-size:1.45rem;
    margin: 0.8rem auto;
}
.contents p {
    text-align: center;
    font-size: 1.25rem;
    color:#222;
    padding:0.5rem 1rem;
    margin:1.25rem auto;
    line-height: 1.25;
}
.contents p a {
    font-weight: bold;
    font-size:1.35rem;
    text-decoration: underline dotted;
}
.contents p a:hover, .contents p a:focus {
    text-decoration: none;
    color:#006;
    cursor: pointer;
}
