@font-face { font-family: Monaco; src: url('../Monaco.ttf'); } 
@font-face { font-family: Ribbon; src: url('../Ribbon.otf'); }
/* BASIC HTML ELEMENTS */
a{
    color: var(--primary-accent-color);
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
footer{
    position: fixed;
    bottom: 0;
}
/* MAIN BODY STUFF */
body{
    font-family: Monaco, sans-serif;
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    margin: 0;
}
p{
    text-align: left;
}
/* TEXT STYLING */
h1{
    font-family: Ribbon, sans-serif;
    font-size: xx-large;
}
sub{
    display: block;
    color: var(--secondary-text-color);
}
/* CUSTOMS */
.glass-bg{
    background: var(--default-glass-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.centerItems{
    align-items: center;
    text-align: center;
}
.centerItems *{
    margin-left: auto;
    margin-right: auto;
}
.centered{
    margin-left: auto;
    margin-right: auto;
}
.textWidth{
    width: 90%;
    max-width: 80ch;
    box-sizing: border-box;
    overflow: visible;
}
.horizontal{
    display: grid;
    grid-auto-flow: column;
    overflow: auto;
    gap:10px
}
.sublevel1{
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 30px;
    padding: 10px;
}
.sublevel1.glass-bg{ background-color: var(--sublevel1-glass-color); }
.sublevel1.horizontal {gap: 20px;}
.sublevel2{
    border-radius: 20px;
    padding: 10px;
}
.sublevel2.glass-bg{ background-color: var(--sublevel2-glass-color); }
.sublevel3{
    border-radius: 10px;
}
.pageCentered{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.pageCentered.glass-bg{
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}
/* SELECTED PROJECT INFORMATION */
#selectedProjectBody img{
    width: 200px;
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}
#selectedProjectBody img:hover{
    cursor: pointer;
}
/* IMAGE ZOOM */
#zoomedImageCont{
    box-sizing: border-box;
    width:  90vw;
    height: 90vh;
    max-width:      max-content;
    max-height:     max-content;
}
#zoomedImageCont button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
#zoomedImageCont button::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background-image: url(images/icons/X.png);
    background-size: cover;
    background-repeat: no-repeat;
}
#zoomedImageCont img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
}