/* base.css - basic layout and formatting for all pages */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    height: auto;
    font-size: 17px;
}

/* main container for header and sections */
main {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* base section for all pages */
section {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    width: 100%;
    z-index: 0;
    padding: 7px;
    background-color: var(--bkgr);
    color: var(--txt);
    overflow-y: auto;
    overflow-x: hidden;
}

/* formatting for embedded video in sections */
section video {
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: 15px;
}
/*

/* bar inside article */
article header {
    display: flex;
    flex-direction: row;
    width: 100%;
    color: var(--hdr_txt);
    background-color: var(--hdr_bkgr);
    font-size: 1rem;
    border-collapse: collapse;
    border-radius: 8px;
    box-shadow: none
}

/* hover effect for articles */
article:hover {
    box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.2s ease;
}


/* formatting for images in sections */
img {
    width: 100%;
    margin-bottom: 15px;
}

/* formatting for large numbers in poc (delete) */
.number {
    text-align: left;
    font-size: 200px;
    line-height: 150px;
    color: var(--txt);
    padding: 40px;
    user-select: none;
}

.img-preview {
    display: block;
    height: 100%;
    padding: 15px;
}

pre {
    color: black;
    padding: 25px;
    overflow: auto;
}

/* --------------- checked --------------- */