@import "color.css";

html {
  font-family: monospace;
  font-size: 16pt;
}

body {
  margin: 0;
  padding: 0;  
  background-image: url(/images/sydney-harbour.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
}

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

a:hover {
  text-decoration: underline;
}

.header,
.content,
.footer {
  box-sizing: border-box;
  padding: .5rem;
  text-align: center;
}

.header, .footer { height: 3rem; }

.content {
  background-color: rgba(255,255,255,.3);
  border-radius: 1rem;
  box-sizing: border-box;
  height: calc(100vh - 6rem);
  margin: 0 auto;
  max-width: 100vw;
  overflow-y: auto;
  padding: 1rem;
  text-align: justify;
  width: 1080px;
}

.content > div {
  background-color: whitesmoke;
  border-radius: .5rem;
  padding: 1rem;
}

.nav {
  border: .1em solid whitesmoke;
  border-radius: .25em;
  padding: .125em .25em;
  background-color: gray;
  min-width: 100px;
  display: inline-block;
}

.nav,
.nav:visited, 
.nav:link {  
  color: whitesmoke;
}

.nav + .nav {
  margin-left: .5em;
}

.site-name {
  display: inline-block;
  width: 300px;
}

.profile {
  float: left;
  width: 100%;
}

.profile > img {
  float: right;
  border-radius: .5rem;
  border: 1em solid white;
}
