/* Global Element Styles */
body {
  width: 100%;
  height: 100svh;
  min-width: 600px;
  padding: 0;
  margin: 0;
  background: black;
  color: white;
  text-align: center;
  font-family: 'Trebuchet MS', Arial, monospace;
}

a {
  text-decoration: none;
  color: inherit;
}

u {
  cursor: pointer;
}

img {
  display: block;
  margin: 0 auto 0 auto;
  min-width: 200px;
  min-height: 200px;
  width: 10svh;
  height: 10svh;
}

table {
  font-size: 16pt;
  border-collapse: collapse;
  text-align: center;
  min-width: 90%;
}

th {
  padding: 1em;
  border: 2pt solid white;
}

td {
  padding: 1em;
  border: 2pt solid white;
}

/* Global Class Styles */
.container {
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  font-size: 1.25em;
  font-weight: bold;
}

.nav a {
  padding: 1em 2em;
}

.nav a img {
  min-width: 0;
  min-height: 0;
  height: 1.25em;
  width: auto;
}

.content {
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* About Styles */
.about {
  min-height: 100svh;
  font-size: 1.5em;
}

.info {
  min-height: 67svh;
}

/* Blog Styles */
.blog {
  background: linear-gradient(45deg, slateblue, 70%, darkslateblue);
  min-height: 100svh;
}

.blogBody {
  padding: 3em 0;
  max-width: 50em;
  text-align: justify;
}

.title {
  text-align: center;
}

.subtitle {
  text-align: center;
}

.branch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Portrait */
@media only screen and (orientation: portrait) and (max-device-width: 568px) {
  body {
    font-size: 2em;
  }
}
