@import url('https://fonts.googleapis.com/css2?&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');



:root {
    --heading-font: 'Montserrat';
    ---logo-font: 'Rubik Doodle Shadow';
    ----heading-font: 'Montserrat';

}

* {
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: rgb(12, 17, 22);
    color: whitesmoke;
    margin-bottom: 1.2rem;
}

h2,
h3 {
    font-family: var(--heading-font);
    font-weight: 900;
}

h3 {
    opacity: 0.5;
}

ul li {
    font-family: var(--para-font);
    font-size: 1.2rem;
    font-weight: 300;
}

header {
    margin: 1rem 0 0 0;
}

header .logoText{
    font-family: var(---logo-font);
    padding: 0 1px;
}

header p {
    font-family: var(--para-font);
    font-weight: 600;
    margin-top: 5px;
}

#loadingIndicator {
    color: rgb(223, 207, 207);
    opacity: 0.5;
}

.logoText {
    color: #5784b1;
}

.container {
    min-width: 50%;
    max-width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 1rem;
    padding-top: 1rem;
    border: 1px solid #1e1b1b;
    border-radius: 5px 7rem 5px 5px;
    box-shadow: 0px 2px 2px #3c3c3c;
}

#todayDateTime {
    opacity: 0.5;
}

#factGenerator p {
    margin: 4rem 0 2rem;
    font-size: 1.2rem;
    color: #838383;
    padding: 0 1rem;
    font-family: var(--para-font);
    line-height: 1.4rem;

}

.blockSpacing {
    margin: 1.5rem 6rem
}

ul {
    list-style: none;
}

li {
    padding-top: 1.4rem;
    text-align: justify;
    line-height: 1.4rem;
}

ul li .arrow, .doubleQuote{
    color: #5784b1;
}

/* ----------------------------FOOTER STYLE STARTED---------------------------- */
footer {
    margin: 2rem 0 1rem 0;
    font-style: var(--heading-para);
    font-weight: 600;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    padding: 5px;
    margin: 0;
}

footer p a {
    text-decoration: none;
    color: whitesmoke;
}

footer p a:hover {
    color: blue;
    font-weight: 400;
}

.refreshButton {
    border: 1px solid whitesmoke;
    border-radius: 5px;
    padding: 3px;
    cursor: pointer;
    color: whitesmoke;
    background: transparent;
    opacity: 0.5;
    margin-top: 5px;
}

/* ----------------------------FOOTER STYLE ENDED---------------------------- */