@import url('https://fonts.googleapis.com/css?family=Raleway:400,500');
/* Custom properties/variables */
:root {
    --black: rgba(0, 0, 0, 1);
    --grey: rgba(220, 220, 220, 1);
    --soft-white: rgba(248, 248, 248, 1);
    --white: rgba(255, 255, 255, 1);
    --main-col: rgba(0, 100, 130, 1);
    --soft-shadow: 0px 0px 10px 5px rgba(230, 230, 230, 1);
    --dark-shadow: 0px 0px 15px 10px rgba(200, 200, 200, 1);
    --soft-radius: 30px;
    --hard-radius: 10px;
    --btn-try: 3px;
    --btn-trx: 5px;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    vertical-align: baseline;
    transition: all 100ms;
}

div {
    position: relative;
    z-index: 2;
}

body {
    background-color: #333;
    color: #333;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.footer {
    width: 450px;
    text-align: center;
    display: block;
    margin: 15px auto 30px auto;
    font-size: 0.8em;
    color: #fff;
}

.footer a {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}

#quote-box {
    border-radius: var(--soft-radius);
    position: relative;
    width: 450px;
    padding: 40px 50px;
    display: table;
    background-color: var(--white);
}

#quote-box .quote-text {
    text-align: center;
    width: 450px;
    height: auto;
    clear: both;
    font-weight: 500;
    font-size: 1.75em;
}

#quote-box .quote-text i {
    font-size: 1em;
    margin-right: 0.4em;
}

#quote-box .quote-author {
    width: 450px;
    height: auto;
    clear: both;
    padding-top: 20px;
    font-size: 1em;
    text-align: right;
}

#quote-box .buttons {
    width: 450px;
    margin: auto;
    display: block;
}

#quote-box .buttons .button {
    height: 38px;
    border: none;
    border-radius: var(--soft-radius);
    color: #fff;
    background-color: #333;
    outline: none;
    font-size: 0.85em;
    padding: 8px 18px 6px 18px;
    margin-top: 30px;
    opacity: 1;
    cursor: pointer;
}

#quote-box .buttons .button:hover {
    opacity: 0.8;
}

#quote-box .buttons .button#tweet-quote, #quote-box .buttons .button#tumblr-quote {
    float: left;
    padding: 0px;
    padding-top: 8px;
    text-align: center;
    font-size: 1.2em;
    margin-right: 5px;
    height: 30px;
    width: 40px;
}

#quote-box .buttons .button#new-quote {
    float: right;
}