:root {
    --bodyColor: #F3EEEA;
    --headerColor: #E4DCCF;
    /* Note: if this is updated, also update SVGs */
    --textColor: #353535;
}

html{
    background-color: var(--bodyColor);
}

body{
  font-family: "Azeret Mono", monospace, Arial;
  font-optical-sizing: auto;
  font-style: normal;
  
  font-size: 16px;
  line-height: 1.4;

  color: var(--textColor);

  height: 100vh;
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--headerColor);
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 70%;
    margin: auto;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
}

main h1 {
    display: inline-block;
}

.socials {
    padding: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socials li {
    list-style: none;
    margin: 0.75em;
}

a {
    color: var(--textColor);
    text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.icon {
  height: 2em;
}
