a,
a:focus,
a:hover {
  color: #fff;
  text-decoration: none;
}

html,
body {
  height: 100vh;
  background: linear-gradient(30deg, #F55905, #f8b848);
  font-family: "Source Sans Pro";
}
body {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sub {
    margin-bottom: .25rem;
}

.name {
    font-weight: bold;
}

.brand-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    img {
        height: 3rem;
        margin-right: .75rem;
    }

    h1 {
        margin: 0;
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .brand-container {
        h1 {
            font-size: 2rem;
        }
        img {
            height: 2rem;
        }
    }

}