@import url('./reset.css');

body {
    background-color: #ffffff;
    font-family: "Roboto Slab", serif;
}



body {
    font-size: 1.1em; /* Adjust this as needed */
}

/* Adjust the font size for smaller screens (e.g., mobile devices) */
@media (max-width: 768px) { /* This is a typical breakpoint for tablets and below */
    body {
        font-size: .9em; /* Smaller font size for mobile devices */
    }
    div#site-title {
        font-size: 1.2em;
    }
    div#explanation {
        font-size: 1.2em;
    }
    div#explanation-details {
        font-size: 1em;
    }
    div#content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 480px) { /* This is a typical breakpoint for small mobile screens */
    body {
        font-size: .8em; /* Even smaller font size for very small screens */
    }
    div#site-title {
        font-size: 1.2em;
    }
    div#explanation {
        font-size: 1em;
    }
    div#explanation-details {
        font-size: .9em;
    }
    div#content {
        padding-left: 5%;
        padding-right: 5%;
    }
}





div#content {
    font-family: "Roboto Slab", serif;
    padding-left: 5%;
    padding-right: 5%;
}

a:link {
    text-decoration: underline;
}
a:hover {
    color: darkorange;
}

div#site-title {
    font-size: 3.4em;
    font-weight: 700;
    padding-bottom: 40px;
}


.orange {
    color: darkorange;
}

div.fact {
    padding-bottom: 0px;
}

div.fact-headline {
    font-size: 1.7em;
    font-weight: 500;
    display: inline;
}

div.fact-body {
    font-size: 1.4em;
    font-weight: 400;
    color: grey;
    display: inline;
}

div.fact-source-body {
    padding-top: 10px;
    font-size: 1em;
    font-weight: 200;
    padding: 0 18px;
    display: none;
    overflow: hidden;
    color: #3366cc;
}




/* Expand symbol */
.fact-source-button:after {
    content: '\25BC'; 
    color: lightgrey;
    float: right;
    margin-left: 8px;
}

/* Collapse symbol */
.active:after {
    content: "\25B2";
    color: lightgrey;
}

/* Style the button that is used to open and close the collapsible content */
.fact-source-button {
    /* background-color: #eee; */
    /* color: #444; */
    color: #3366cc;
    display: flex;
    align-items: center;
    background-color: white;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    padding-top: 12px;
    padding-bottom: 8px;
    border: none;
    text-align: left;
    outline: none;

    font-size: .9em;

}


div.divider {
    margin-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid darkorange;
    margin-left: 10%;
    margin-right: 10%;
}




div#explanation {
    font-size: 2.8em;
    font-weight: 500;
    display: inline;
}
div#explanation-details {
    font-size: 1.8em;
    font-weight: 400;
    color: grey;
    display: inline;
}
div#explanation-final {
    font-size: 1.3em;
    font-weight: 400;
    color: grey;
    display: inline;
}