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

body {
    height: 100%;
    margin: 0;
    background-color: #171717;
}

.main {
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-wrap {
    font-family: sans-serif;
    font-size: 0.9375rem;
    margin-top: 1.5em;
    text-align: center;
}

h1 {
    font-weight: normal;
    text-align: center;
    margin: 0;
    letter-spacing: .5px;
}

.dot {
    visibility: visible; /* Controlled by JS */
  }
  
p {
    margin: 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1em;
    font-weight: normal;
    line-height: 130%;
    letter-spacing: .1px;
}

a {
    color: inherit;
    text-decoration: none;
    line-height: 0;
}

.email-link {
    text-decoration: underline;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wip-wrap {
    font-family: serif;
    text-align: center;
}

#pngSequence {
    width: 300px;
    height: auto;
    margin-top: 1em;
}

.main-button {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    background-color: #FC5E00;
    padding: 0 1.5em 0 1.5em;
    height: 2.0625em;
    border-radius: .375em;
    box-shadow: inset 0px 2px 4px 0px rgba(255, 255, 255, 0.4), 
    0px 1px 0px 0px rgba(0, 0, 0, 1);
    border: 0.5px solid transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease; 
}

.main-button:hover {
    background-color: #FF6A33;
    box-shadow: inset 0px 2px 4px 0px rgba(255, 255, 255, 0.4), 
                0px 3px 0px 0px rgba(0, 0, 0, 1);
    transform: translateY(-1px);
    border-color: white;
}

.icon-wrap {
    margin: 0 auto 0 auto;
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

.social-link {
    transition: transform 0.3s ease;
    padding: 4px;
}

.social-link:hover {
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    
    .logo-wrap {
        margin-top: 1em;
        font-size: .8rem;
    }

    #pngSequence {
      width: 250px;
    }

    .icon-wrap {
        margin-bottom: 1em;
    }

    #pngSequence {
        margin-top: 0;
    }
  }