body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
p {
    font-weight: bold;
    /* font-family: Baskerville; */
    font-family: Calibri;
}
#mainContainer {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.045);
    width: 75vh;
    padding: 25px;
    border-radius: 15px;
    /* box-shadow: 0 0 15px #0000001d; */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.065), 0px 0px 3px rgba(0, 0, 0, 0.048), inset 0px 0px 3px rgba(255, 255, 255, 0.1);
    margin: 20px;
}
#newQuoteButton {
    border: none;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0) 100%), #007AFF;
    box-shadow: 0px 1px 2.5px rgba(0, 122, 255, 0.24), 0px 0px 0px 0.5px rgba(0, 122, 255, 0.12);
    border-radius: 5px;
    font-family: 'calibri';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
}
#newQuoteButton:hover {
        box-shadow: 0px 0px 10px rgba(17, 124, 255, 0.257);
        background-color: #0f83ff;
        transition: all 0.2s ease-in-out;
}
#newQuoteButton:active {
    background-color: #0072ec;
}
