@import "header.css";
@import "directoryTree.css";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
:root {
    --bcit-blue: #003c71;
    --bcit-yellow: #FFF200;
    --link-color: #0069ff;
    --link-visited-color: #003c71;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #454545;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    min-height: 350px;
    overflow: hidden;
}

main {
    min-height: 350px;
	flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    padding: 50px 40px;
    margin: auto;
    overflow-y: auto;
    overflow-x: hidden;
}

main .button-container {
    width: calc(100% + 80px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #f9f9f9;    
    border: 1px solid #ccc;
    padding: 5px;
    column-gap: 0.5em;
}
.landing-page header .button-container {
    display: none;
}
main button {
    height: 100%;
    width: auto;
    padding: 0;
    border: none;
    cursor: pointer;
    color: var(--link-color);
    background-color: transparent;
}
button:hover img {
    filter: brightness(110%);
}

button img{
    filter: brightness(60%);
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    max-height: 500px;
}

a {
    text-decoration: none;
    color: var(--link-color);
    background-color: var(--bcit-yellow);
}
a.visited {
    color: var(--link-visited-color);
}

a i {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    font-size: 1.2em;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
}

i.folder-fill::before {
    content: "\f3d1";
}
i.images::before {
    content: "\f42b";
}
i.arrow-up-right-square::before {
    content: "\f143";
    font-size: 0.8em;
}

.logo{
    width: 80px;
    height: auto;
}
header .logo {
    cursor: pointer;
}
.note {
    padding: 2em;
    margin: auto;
    margin-top: 2em;
    color: #555;
    background-color: #f9f9f9;
    border-radius: 0.5em;
    border: 1px solid #ccc;
}
.note ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: none;
    padding-left: 0em;
}

@media (max-width: 750px) {
    .note ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

footer {
    bottom: 0;
    width: 100%;
    background-color: #dcdcdc;
    padding: 1em;
    text-align: center;
    font-size: 10px;
    border-top: 1px solid #ccc;
}

@media (max-width: 600px) {
    body {
        font-size: 18px;
    }
    .note {
        padding: 1em;
        margin-top: 1em;
        font-size: 0.85em;
    }
    footer {
        font-size: 9px;
        padding: 0.5em;
    }
}