body {
    line-height: 1;
    overflow: hidden; /* Hide scrollbars */
}

html, body {
    height: 100%;
}

/* Custom styles */
html {
    font-size: 62.5%;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #444;
    background-color: #fff;
    font-size: 1.6rem;
}

#wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
    padding: 40px;
}

#quote-box {
    width: 800px;
    height: 250px;
    background-color: #fff;
    border-radius: 5px;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.quote-text {
    font-size: 2.7rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-text i {
    font-size: 2.7rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: #999;
    font-weight: 600;
}

.quote-author {
    font-size: 2.3rem;
    margin-top: 0rem;
    color: #999;
    margin-left: auto;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 100%;
}

#tweet-quote {
    margin-right: auto;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10%;

}

#tumblr-quote {
    margin-right: 550px;
    color: #fff;
    padding: 5px 15px;
    margin-left: 5px;
    border-radius: 10%;
}

#new-quote {
    margin-right: auto;
    color: #fff;
    padding: 5px 15px;
    border-radius: 10%;
    border: none;
    font-size: 1.7rem;
}

.button {
    display: inline-block;
    background-color: transparent;
    font-size: 2.6rem;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.button:hover {
    color: #333;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.5rem;
    color: rgb(173, 173, 173);
}

.footer a {
    transition: color 0.2s ease;
    color:rgb(173, 173, 173)
}

.footer a:hover {
    color: blue;
}