ul, li{
    margin: 0;
    padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
}

.box {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 0;
  margin: 0;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */  
}

.box .row {
  display: flex;
  width: auto;
}

.box .row.header {
  display: flex;
  flex: 0 1 auto;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */  
  padding-top: 10%;
  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.box .row.content {
  display: flex;
  flex: 1 1 auto;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */  
}

.box .row.footer {
  flex: 0 1 40px;
}

.footer span {
    font-family: Roboto, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: grey;
}

img.splash-logo {
    width: 50%;
}

.splash-logo {
    height: auto;
}

#portfolio-list {
    list-style-type: none;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

a.portfolio-link {
    all: unset;
    cursor: pointer;
    color: grey;
}

li.portfolio-link {
    margin-top: 30px;
}

a.portfolio-link:hover {
    color: black;
}
