#progress {
    position: fixed;

    width: 0px;
    height: 5px;
    background-color: #5ab98b;

    transition: all 0.2s ease;
    z-index: 20;
}

#selection {
    position: absolute;
    display: none;
    height: 40px;

    background-color: #FAFAFA;
    border-radius: 4px;

    box-shadow: 0px 0px 10px rgba(0,0,0,0.03);
    border: 1px solid #E9E9E9;
    z-index: 11;
    transition: all 0.2s ease;
}

#selection::after {
    position: absolute;
    right: -11px;
    content: "\25B6";
    color: #FAFAFA;
    top: 8px;
    text-shadow: 1px 0px 0px #E9E9E9;

    font-size: 0.8em;

    transform: scaleY(1.5);
}

#overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background-color: rgba(255,255,255,0.8);

    z-index: 20;
}

#overlay #img {
    margin: 10vh 10vw;
    width: 80vw;
    height: 80vh;
    background-image: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.site-wrapper {
    min-height: auto;
}

.twitter, .copy {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: all 0.2s ease;
    cursor: pointer;
}

.twitter {
    background-image: url(../img/twitter.png);
    margin-right: 0px;
}

.copy {
    background-image: url(../img/copy.png);
}

#banner {
    width: calc(100vw - 50px);
    padding: 100px 25px 20px 25px;
    text-align: center;

    background-color: #55b399;
    background: radial-gradient(at bottom left, #176d55, #82ceb9);
    -webkit-background: radial-gradient(bottom left, #176d55, #82ceb9);
}

#logo {
    width: 50px;
    height: 50px;
    background-image: url(../img/zulip-icon-mono.png);
    background-size: cover;
}

.white {
    color: #d2ece5;
}

.button-group {
    margin-top: 60px;
}

button.white-btn {
    background-color: transparent;
    border: 1px solid #add2c8;
    color: #fff;
    padding: 0px 5px;
    min-height: 25px;
    border-radius: 5px;
}

button.white-btn:hover {
    background-color: #d2ece5;
    border: 1px solid transparent;
    color: #176d55;
}

.post-content img {
    cursor: pointer;
}

.post-content p {
  margin-bottom: 1.25em;
}

a.no-style {
  color: transparent;
  text-decoration: none;
}

.inline-block {
    display: inline-block;
    vertical-align: top;
}

.logo-text-complement {
    margin: 3px 0px 0px 20px;
}

.author-top {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.3rem;
}

pre code {
  font-size: 0.9em;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}

pre {
  overflow: auto;
}

h1 {
    letter-spacing: -1px;
}

.post-content h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

@media only screen and (max-width: 500px) {
  .logo-text-complement {
    margin-top: 10px;
  }
}