html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
}

body {
    display: grid;
    place-content: center;
	background-color: #000;
	text-align: center;
}

a:link, a:visited {
    color: #600;
    text-decoration: none;
}


a:hover {
    color: #900;
    text-decoration: none;
}

/*
a:active {
    color: #666;
    text-decoration: none;
}
*/

div .nav {
    display: inline;
    color: #600;
    font-size: 66px;
    text-shadow: #333 2px 2px 3px;
    position: relative;
}


div #title {
    color: #999;
    font-size: 33px;
    text-shadow: #900 2px 2px 3px;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
}

div img#portrait {
    --s: 20px; /* control the size */
    padding: var(--s);
    border: calc(2*var(--s)) solid #0000;
    outline: 1px solid #666;
    outline-offset: calc(-1*var(--s));
    background: conic-gradient(from 90deg at 1px 1px,#0000 25%,#600 0);
}

div #text {
    color: #999;
    font-size: 24px;
    text-align: left;
    margin-left: 60px;
    width: 512px;
    font-family: "Times New Roman", Times, serif;
}

#outer-grid {
    display: grid;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
}

#outer-grid > div {
    background-color: #000;
    text-align: center;
}

#inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

#inner-grid > div {
    background-color: #000;
}
