﻿body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    text-align: center;
    font: 1.25em 'Segoe UI',Arial,sans-serif;
    color: #fff;
    background: url("/images/suspended.jpg");
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 1.75em;
    }
}

article {
    display: block;
    margin: 1em;
    padding: 1em;
    max-width: 1200px;
    min-width: 60%;
    background: rgba(0,0,0,0.45);
    border-radius: 12px;
    font: inherit;
}

h1, p {
    margin-top: 0;
}

h1 {
    font-size: 3.0em;
}

.grid-container {
    display: grid;
    column-gap: 1em;
    text-align: left;
}
@media screen and (min-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

a {
    color: inherit;
    font-weight: bold;
}
a.email {
    overflow-wrap: anywhere;
}
a:hover {
    text-decoration: none;
}