body {
    background-color: white;
    font-family: Palanquin, sans-serif;
}

#container {
    position: relative;
    /* background-color: cyan; */
    height: 100vh;
    min-height: 600px;
}

#center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  /* background-color: yellow; */
  text-align: center;
  width: 100%;
}

#logo, #title, #blurb {
    margin: 0 auto;
}

#logo {
    margin-bottom: 20px;
    max-width: 95vw;
}

#title {
    margin-bottom: 20px;
    font-size: 34px;
    max-width: 95vw;
}

#blurb {
    font-weight: 100;
    margin-bottom: 57px;
    font-size: 18px;
    width: 700px;
    text-align: left;
    max-width: 95vw;
}

#steps {
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    max-width: 95vw;
}

.step {
    position: relative;
    display: inline-block;
    width: 250px;
    /* background-color: pink; */
    float: left;
    text-align: left;
    padding: 10px 20px;
    max-width: 25vw;
}

.divider {
    border-right: 1px solid #d4d4d4;
    border-bottom: none;
}

#copyright {
    display: block;
    position: absolute;
    bottom: 3px;
    width: 100%;
    margin: 0 auto;
    font-size: 10px;
    text-align: center;
    color: #777;
}

@media (max-device-width:600px), (max-width:600px) {
    #container {
        height: auto;
        padding-top: 50px;
    }

    #center {
      position: relative;
      /* background-color: yellow; */
      text-align: center;
      transform: none;
      width: 100vw;
      left: auto;
    }

    #steps {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 95vw;
    }

    .step {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 95vw;
        max-width: 95vw;
        display: block;
    }

    .divider {
        border-right: none;
        border-bottom: 1px solid #d4d4d4;
    }

    #copyright {
        margin-top: 30px;
        position: relative;
        display: block;
        width: 100%;
        font-size: 10px;
        text-align: center;
        bottom: auto;
    }
}

.step h2 {
    margin-top: 0;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 5px;
}

.step .description {
    font-weight: 100;
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.button-align {
    width: 100%;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.social-align {
    width: 100%;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right;
}

.step .button {
    font-size: 16px;
    font-weight: 600;
    color: white;
    padding: 2px 20px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;

    transition: all 0.2s ease-in-out;
}

.step .button:hover {
    opacity: 0.8;
}

.subtext {
    font-style: italic;
    font-size: 12px;
    font-weight: 100;
    margin-top: 30px;
    margin-bottom: 5px;
}

.pre-button-height {
    min-height: 100px;
    padding-bottom: 20px;
}

#facebook-button {
    background-color: #3b5998;
}

#twitter-button {
    background-color: #55acee;
}

#kickstarter-button {
    background-color: #2bde73;
}

a {
    text-decoration: none;
    color: #1F8FB1;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #7ba;
    transition: all 0.2s ease-in-out;
}