@charset "UTF-8";
/* Master CSS for CSIT final project: focuSearch */
*, *::before, *::after {
    box-sizing: border-box;
}

*, html {
    scroll-behavior: auto;
}

/*header*/	
h1, h2, h3 {
	font-family: ui-rounded, Helvetica, Arial, sans-serif;
	text-align: center;
}	
h3 {
    font-size: 80%;
}
/*adjusting inner text*/
label {
    display: block;
/*margin: auto;*/
    font: 1em "ui-rounded", "sans-serif";		
}
input, label {
    margin: .4em 0;
}
input {
    width: 75%;
}

/*table styles*/
table {
    border-collapse: collapse;
}
table, td, th {
    border: 1px solid black;
}
td {
    padding: 10px;
		}

/*position:sticky isnt fully supported in all browsers, trying position: fixed instead*/
/*div.sticky {
  position: -webkit-sticky; /* Safari */
/*  position: sticky;
  top: 0;
}
*/
footer {
	text-align: center;	
	font-family: ui-rounded, Helvetica, sans-serif;
    font-size: 80%;
    background-color: rgba(255,255,255,0.80)
}
nav.ul.li {
    text-decoration: none;    
}

/*main div*/
.focus {
	display: flex;
	flex-direction: column;
	align-items:center;
	justify-content: center;
	margin: auto;
	width: 70%;
}	
/*nav styling*/
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/*overrider bs-4-4-1 class @ lines 6755-6763*/
.bg-light {
    background-color: rgba(197,205,255,0.81) !important;
}

/*bootstrap has .bg-dark @ lines 6765-6773) */
.dark-mode {
    background-color: rgba(0,0,0,0.81);
    color: white;
}

/*@media*/