body {
  background: var(--dark-green);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 20vw;
  padding: 1rem 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  color: var(--pink);

  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-grow: 1;
}

h1 {
  color: var(--pink);

  font-family: Handjet;
  font-size: 4.0625rem;
  letter-spacing: 2px;

  text-shadow: 
    -1px -1px 0 var(--gray),
    1px -1px 0 var(--gray),
    -1px 1px 0 var(--gray),
    1px 1px 0 var(--gray);
  margin: 0;
}

#divider {
  margin-top: 0;
  margin-bottom: 0;
  height: 2px;
  width: 85vw;
}

section {
  color: #FFFFFF;
}

/*
 * Color Classes
 */
.creme {
  color: var(--creme);
}

.light-green {
  color: var(--light-green);
}

.green {
  color: var(--green);
}

.pink {
  color: var(--pink);
}

.creme-background {
  background-color: var(--creme);
}

.light-green-background {
  background-color: var(--light-green);
}

.green-background {
  background-color: var(--green);
}

.pink-background {
  background-color: var(--pink);
}


/*
 * Header
 */
@media screen and (max-width: 600px) {
  header {
    display: flex;
    justify-content: center;
    margin: 0;
  }
}

/*
 * Text Format 
 */
.welcome {
  width: 70vw;
  max-width: 290px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 40px 0;
  font-size: 1.875rem;
}

.welcome > * {
  width: 100%;
  justify-content: space-between;
  display: flex;
}

@media screen and (min-width: 600px) {
  .welcome {
    align-self: flex-start;
    margin: 40px 28vw;
  }
}

/*
 * Link Squares
 */
.links {
  width: 70vw;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}

.square {
  position: relative;
  width: 3.5rem;
  border: 2px solid;
  padding: 0.5rem 1rem;
  font-size: 2.25rem;
  font-family: handjet;
  letter-spacing: 2px;
  text-align: center;
  margin: 1rem 0;
}

.links > * > hr {
  position: absolute;
  left: 100%;
  top: 50%;
  width: 100vw;
  margin: 0;
  height: 2px;
}

.square:nth-child(1) {
  margin-left: 1rem;
}

.square:nth-child(2) {
  margin-left: 13rem;
}

.square:nth-child(3) {
  margin-left: 5rem;
}

/*
 * Footer
 */
footer > i {
  padding: 1rem;
}
