html{
    height: 100%;
}
body {
    font-size: 16px;
    background: #3D7EAA;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #FFE47A, #3D7EAA);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #FFE47A, #3D7EAA); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", "Arial", sans-serif;
    color: white;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
  
}
.container {
    position: relative;
    margin: 0 auto;
    width: 50vw;
    top: 2vh;
}
h1,h3 {
    margin-bottom: 5vh;
    color: rgb(238, 227, 206);
    text-align: center
}
h1 {
  font-size: 3rem;
}
#quote-area {
    position: relative;
    font-size: 1.5rem;
    margin: 0;
    border: 2px solid #BFC28A;
    height: 100%;
    min-width: 30vw;
    padding: 2rem;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}
#copy {
    position: absolute;
    top:0;
    right: 0;
    display: block;
    background-color: #BFC28A;
    color: white;
    border: none;
    margin:0;
    padding: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}
#said {
    font-style: italic;
}
#person {
    font-weight: 500;
    float: right;
}
#go{
    float: left;
}
#tweet {
    float: right;
}
.btn {
    background-color: rgb(170, 172, 148);
    font-size: 1rem;
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    min-width: 20%;
    margin-top: 1rem;
    text-decoration: none;
    overflow: none;
}
@media(max-width:900px) {
    .container{
        width: 100%;
    }
}
