/* ill work out smaller screen stuff later lol */

html { 
    scroll-behavior: smooth;
}
body {
    background: #caad8e;
    margin: 16px;
}
.content {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 128px 0 0 0;
    background: #15151570;
    width: 100%;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    margin-top: 78px;
    user-select: none;
}
.card-e-outer, .card-o-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin: 6px;
    width: 30vw;
    height: 164px;
}
.card-e-inner, .card-o-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin: 6px;
    width: 25vw;
    height: 164px;
}
.card-normal:hover {
    cursor: pointer;
    background: #caad8e;
}
.card-normal:hover > i {
    color:white;
}
.head {
    text-align: center;
    padding-bottom: 128px;
}
.card-row {
    display: flex;
    justify-content: center;
    width: 100%;
}
i { 
    color: #caad8e;
}
.divisor {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}
.divisor-line {
    height: 8px;
    width: 30vw;
    align-self: center;
    border-style: solid;
    border-color: white transparent;
    border-width: 4px;
}
.divisor-icon {
    height: 48px;
    width: 48px;
    margin: 8px;
    background: white;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
    position: fixed;
    top: 16px;
    width: calc(100% - 32px);
    background: white;
    height: 48px;
}
.navbar-text {
	color: #caad8e;
	font-family: sans-serif;
    font-weight: bold;
    font-size: 2em;
	margin: 0 12px;
	user-select: none;
}
.navbar-text-sub {
	color: #96836f;
	font-family: sans-serif;
    font-weight: bold;
    font-size: 2em;

	user-select: none;
}
.navbar-text:hover, .navbar-text-sub:hover {
	cursor: pointer;
}
.navbar-left {
	display: flex;
	align-items: center;
	justify-content: center;
}
.navbar-right {
	display: flex;
	align-items: center;
	justify-content: center;

}
.nav-underlay {
    position: fixed;
    top: 0px;
    width: calc(100% - 32px);
    background: #caad8e;
    height: 80px;
}
#cards-i {
    background: url('./i/icons8-heart-48.png') no-repeat;
}
#quick-links-i {
    background: url('./i/icons8-link-48.png') no-repeat;
}
#projects-i {
    background: url('./i/icons8-apps-tab-48.png') no-repeat;
}
.quick-links, .projects {
    display: flex;
    justify-content: center;
}
.quick-links {
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.quick-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 128px;
    width: 86vw;
    background: white;
    padding: 16px;
	margin: 6px 0;
}
#hidden {
	display: none;
}
.preview {
    height: 100%;
    width: 256px;
    background: #caad8e;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}  
.preview > img {
    width: 164px;
}
#pr2 {
    width: 92px;
}
.quick-link-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: gray;
    user-select: none;
}
.quick-link-title {
    font-size: 1em;
    font-weight: bold;
    color: #caad8e;
}
.quick-link-description {
    font-size: 0.6em;
    width: 60%;
    font-weight: bold;
}
.quick-link-action {
    width: 128px;
    height: 64px;
    background: url('./i/icons8-external-link-64.png') no-repeat;
}
.quick-link-action:hover {
    cursor: pointer;
    opacity: 0.5;
}
.footer {
    width: 100%;
    background: #887765;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0 ;
}
.footer-graphic {
    height: 456px;
    width: auto;
    margin: 16px 32px;
	user-select: none;
}
.footer-content {
    display: flex;
    flex-direction: column;
    margin: 48px 48px 0 0;
}
.footer-content > span {
    font-size: 1.2em;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2em;
    padding: 16px;
    text-align: right;
    user-select: none;
}
.footer-content > span:hover {
    color: #caad8e;
    cursor: pointer;
}
.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 512px;
    width: 25vw;
    background: white;
    padding: 16px;
    margin: 0 16px 32px 16px;
}
.project-card > .preview {
    height: 12vw;
    width: 25vw;
    background: #caad8e;
    margin-right: 0;
}
.project-detail {
    display: flex;
    flex-direction: column;
    color: gray;
    user-select: none;
    font-size: 1em;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    padding: 16px;
}
.project-title {
    color: #caad8e;
    font-size: 1.2em;
}
.project-action {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
    width: 16vw;
    height: 64px;
    background: #caad8e;
    text-align: center;
    user-select: none;
}
.project-action:hover {
    cursor: pointer;
    opacity: 0.5;
}
.project-action:active {
    background: #998168;
    opacity: 1;
}
.card-content {
	display: none;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 6px;
    width: 22vw;
    height: 164px;
	font-size: .6em;
}
.card-content > div {
	margin: 6px 0;	
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-content > div > span {
	color: #caad8e;
	margin-left: 6px;
}
.card-content > div > span:hover {
	opacity: 0.6;
	cursor: pointer;
}
.card-clicked {
	background: white;
}
.card-clicked:hover {
	background: white;
}
a {
	color: inherit;
	text-decoration: none;
}
.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #0000003f;
    height: 100vh;
    width: 100vw;
    z-index: 1;
}
.popup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 60vw;
    height: 32vh;
    z-index: 2;
}
.popup-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.popup-text {
    text-align: center;
    margin: 32px;
}
.popup-text > span {
    font-size: .8em;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2em;
    color: #caad8e;
}
.popup-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    color: white;
}
.popup-buttons:first-child {
    background:  grey; ;
}
.popup-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 12vw;
    height: 48px;
    background: #caad8e;
    text-align: center;
    user-select: none;
    align-self: baseline;
    margin: 6px;
}
.popup-action:hover {
    cursor: pointer;
    opacity: 0.5;
}
.empty {
	margin: 132px 0 164px 0;
	color: #caad8e;
	text-align: center;
}
#empty-pr {
	margin: 132px 0 198px 0;
}

.content-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 78px 0 24px 0;
    background: #15151570;
    width: 100%;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    user-select: none;
}
/* for silly */
.graphic > img {
	width: 128px;
    display: flex;
    image-rendering: pixelated;
}
.graphic:hover > img {
	width: 136px;
	cursor: pointer;
}
.graphic:active > img {
	width: 100px;
}
/* for sitemap (I WILL MAKE ALL THESE SEP FILES LATER LOL) */
.maptree {
	width: 80%;
	padding: 128px;
}
.maptree > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.maptree > div > span {
	white-space: nowrap;
}
.tree-fl {
	width: 100%;
	height: 8px;
	margin: 0 32px;
	background: white;
}
.maptree-tl {
	color: white;
}
.maptree-l2 {
	color: #f2e2d3;
	margin-left: 48px;
}
#l2 {
	background: #f2e2d3;
}
.maptree-l3 {
	color: #dfcebd;
	margin-left: 92px;
}
#l3 {
	background: #dfcebd;
}