body {
    background: url(header-bg.jpg);
    color: white;
    width:auto;
    height: 100vh;
    margin:0;
    display:flex;
    align-items: center;
    justify-content:center;
}

.container{
    text-align:center;
    width:auto;
    max-width:900px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255,255,255, 0.4); ;
    box-shadow: 0 10px 10px 10px rgba(0,0,0, 0.2);
   
}

#ql-icon {
    font-size: 40px;
    margin:10px;
}

#qr-icon {
    font-size: 40px;
    margin-top:auto;
}

.qoute-text {
    font-size: 2.0rem;
    font-family: Roboto !important;
    font-weight: 500;
    text-align: center;
}

.qoute-author {
    font-size: 1.6rem;
    font-family: 'KoHo';
    margin: auto 0 5px ;
}

.line {
    width:100px;
    margin:auto;
}

.icon-container {
    display:flex;
    justify-content: left;
    
}

.tweet-btn{
    padding: 10px 30px;
    color:white;
    background:#21232a;
    border-radius:5px;
    cursor:pointer;
    border: 1px solid #393C45;
    box-shadow: 0rem 0.2rem rgba(24, 25, 26, 0.65);
    font-size:1.2rem;
}

.tweet-btn:hover {
    background:#484b55;
}

.twitter:hover{
    background: #38a1f3;
    border:none;
}

.tweet-btn:active {
    transform: translate(0, 0.2rem);
    box-shadow: 0rem 0.2rem rgba(24, 25, 26, 0.25);
    background:#252730;
}

.twitter:active{
    background: #38a1f3;
    border:none;
}

.button-container{
    display:flex;
    justify-content: space-between;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* Media Query */
@media screen and (max-width: 600px){
    .container{
        margin:auto 10px;
    }

    #ql-icon {
        font-size: 20px;
        margin:5px;
    }
    
    #qr-icon {
        font-size: 20px;
        margin-top:auto;
    }
    .qoute-text {
        font-size: 1.2rem;
    }
}
