* {
    box-sizing: border-box;
}

body {
    background-color: #444;
}

#box {
    display: flex;
    flex-flow: column nowrap;
    height: 95vh;
    width: 90vw;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 5vh;
    width: 100%;
}

#content {
  margin-top: 1rem;
  display: flex;
  flex-flow: row wrap;
}

aside {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    height: 90vh;
    width: 10rem;
    flex-grow: 1;
    background-color: #333;
    border-style: dashed;
    border-color: #b374ff;
    border-width: 0.2rem;
    gap: 0.70rem;
    position: -webkit-sticky;
    position: sticky;
}

article {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: flex-start;
  height: 90vh;
  width: 50vw;
  flex-grow: 2;
  margin-inline: 1rem;
}

footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 5vh;
    background-color: #b374ff;
    color: #000;
    text-align: center;
}

#badge {
    image-rendering: pixelated;
    height: 31px;
    width: 88px;
}

nav a{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #b374ff;
  background-color: #333;
  color: #CCC;
  width: 10vw;
  height: 5vh;
  font-size: x-large;
}

nav a:hover {
  background-color: #555;
  cursor: pointer;
}

article section{
  flex-grow: 1;
  margin-top: 1rem;
  background-color: #333;
  width: 100%;
  color: #CCC;
  text-align: center;
}

.blurb {
  flex: 1 2 auto;
}

.content {
  flex: 2 1 auto;
  overflow-y: scroll;
}

.links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35%;
  margin-inline: 1rem;
}

.links ul {
  text-align: left;
}

.links a {
  color: #CCC;
}

aside .pics{
  margin-top: 1rem;
  width: 100%;
  object-fit: scale-down;
}

hr {
  margin-top: 0.5rem;
  width: 90%;
  border-width: 0.2rem;
}

aside p{
  color: #CCC;
  font-weight: 800;
  align-self: center;
}

aside a{
  align-self: center;
}

aside h1, h2{
  color: #CCC;
  font-weight: 800;
  align-self: center;
}

#racc1 {
  width: 80%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  align-content: flex-start;
}

.badges img {
  flex-basis: auto;
}