:root {
  --accentgray: #b8b8b8;
}

body {
  background: green url(https://smoothee.neocities.org/images/cloudscape.png) no-repeat fixed top left;
  background-size: 230em;
  background-position: -800px -500px;
  color: white;
  font-family: helvetica;
  font-size: 14px;
}

#mainflex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  
  box-sizing: border-box;
  width: 1000px;
  margin: 50px auto;
  border: 1px var(--accentgray) solid;
  padding: 0.25rem;
}
.box {
  padding: 1rem;
  border: 1px var(--accentgray) solid;
  background-color: rgb(255,255,255,0.1);
  margin: 0.25rem;
  box-sizing: border-box;
}

.header {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 3rem;
}
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title h1 {
  font-style: italic;
  font-weight: bold;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-size: 30px;
}
.title h2 {
  font-style: italic;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accentgray);
  font-size: 18px;
}
.title h1, .title h2 {
  margin: 0 0;
}
.header img {
  height: 70px;
}

.body {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.leftbody {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
  width: 200px;
}
.rightbody {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
  width: calc(799px - 0.5rem);
}

.links {
}
.intro {
}