body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #13171c 0%, #1b2028 100%);
    text-shadow: #f5e05a 8px 8px 20px;
    color: #f5e05a;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#quote-container {
    margin-top: 8%;
    display: flex;
    flex-direction: column;
    border: #f5e05a dashed 8px;
    border-radius: 10px;

    justify-content: center;
    align-items: center;
    text-align: center;

    width: min(500px, 80vw);
    min-height: 200px;
    padding: 20px;
}

#quotetext-container {
    text-shadow: #f5e05a 8px 8px 20px;
}

#author-container {
    text-shadow: #f5e05a 3px 3px 15px;
}


#buttons-container {
    margin-top: 1%;
}
#buttons-container button {
    background: #f5e05a;
    border-radius: 10px;
    border: #f5e05a;
}


#buttons-container button:hover {
    background: #887912;
    color: #13171c;
    cursor: pointer;
}

.logo {
    margin-top: 1%;
    color: #f5e05a;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.logo:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #f5e05a;
}
#QuoteProgress {
    margin-top: 30px;
}
