* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #000000;
  --text-color: #c0b0a0;
  --pageMargin: 1.04rem;
  --pageVMargin: 1.04rem;
}

a, a:visited, a:hover {
  text-decoration: none;
  color: var(--color-text) !important;
}

header {
  position: fixed;
  display: block;
  top: 0;
  width: 100%;
  min-height: 4rem;
  opacity: 1;
  transition: top 0.35s, opacity 0.35s;
  z-index: 1000;
  padding: var(--pageVMargin) var(--pageMargin) var(--pageVMargin) calc(var(--pageMargin) + 3.0rem);
  background-color: #000000;
  color: #c0b0a0;
}

header.hidden {
  top: -4rem;
  opacity: 0;
  transition: top 0.35s, opacity 0.35s;
}

.contact {
  display: flex;
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 1px;
  border-color: var(--text-color);
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  flex-direction: row;
  justify-content: start;
  gap: 0.35rem;
  align-items: center;
}

icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  position: relative;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
}

rows {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

columns {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
}

button.more {
  position: fixed;
  top: var(--pageVMargin);
  left: var(--pageMargin);
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  color: var(--text-color);
  z-index: 1001;
  border: none;
  border-radius: 50%;
}

.name {
  font-size: 1.25rem;
  font-weight: bold;
}

@media (max-width: 688px) {
  body {
    --pageMargin: 0.75rem;
    --pageVMargin: 0.75rem;
  }

  columns.shy {
    flex-direction: column;
    align-items: start;
  }
}