@font-face {
    font-family: popstarpop;
    src: url(../../Assets/Fonts/popstarregular-cufonfonts/POPSTAR_pop.TTF);
}

@font-face {
    font-family:pocket_ball;
    src:url(../../Assets/Fonts/pocket-ball-cufonfonts/PocketBallCondensed-gVE5.otf);
}

@font-face{
    font-family:nolinga;
    src:url(../../Assets/Fonts/Nolinga-Jpv6n.otf);
}

body {
    background: url("../../Assets/Images/3Dart/Webassets/CubeBackground_Scalable.png");
    /* background: radial-gradient(circle at 50% 90%, #a9b4ffff, #a9b4ffff); */


    background-size: cover;

    background-repeat: no-repeat;
    background-position-x: center;
    background-blend-mode: normal;
    margin: 0;
    color: rgb(255, 255, 255);
    font-family: nolinga, calibri;
    overflow: hidden;
    max-width: 100vw;
    height:100vh;
    min-width: 100%;
    z-index: 1;
}

#decals {
    position: absolute;
    min-height: 100vh;
    min-width: 100vw;
    margin: 0px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

#decal_1 {
    position: absolute;
    top: 0px;
    left: 50%;
    min-width: 50%;
    width: 100%;
    transform: translate(-50%, -55%) scale(1.3,1.2);
    z-index: 2;
}

#title{
    position: absolute;
    left:50%;
    width:fit-content;
    top:5vh;
    transform:translate(-50%);
    font-size: 25pt;
}

h1{
    font-family: pocket_ball;
}

nav{
    display: flex;
    height: 10vh;
}
nav a{
    display: block;
    height:fit-content;
    margin:5px;
    padding:15px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    color:white;
}

.glass {
    border-radius: 20px;
    --border-width: 2px;
    position: relative;
    background: hsl(176, 72%, 78%, 0.2);
    backdrop-filter: blur(6px);
}
.glass::before {
    content: '';
    position: absolute;
    top:0;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    /* background: linear-gradient(hsl(176,72,78) , hsl(0, 0%, 100%)); */
    background: linear-gradient(#d5edff, #4d70f0) border-box;
    border: var(--border-width) solid transparent;
    mask: linear-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask-composite: subtract;
}

main{
    margin-top: 8%;
    width:100%;
    
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
    "notes mainContent other"
    ". mainContent .";
    gap: 5px 5px;
    height:74%;
    justify-content: center;
}
img{
    width:100%;
}
#wrapper{
    overflow: hidden;
    grid-area: mainContent;
    box-sizing: border-box;
    width:100%;
    height:100%;
    padding:1em;
}
#mainContent{
    width:100%;
    height:100%;
    overflow: scroll;
    scrollbar-width: none;
    border-radius: 20px;
}

#heroImage{
    position: relative;
    border-radius: 20px;
    left:50%;
    transform: translate(-50%);
    max-width:100%;
    max-height:80% ;
    width:auto;
    /* max-height: 50%; */
    object-fit:cover;
    /* margin:2%; */
    /* padding:1em; */
}
#notes{
    grid-area: notes;
    width: 100%;
    
    height: 100%;
}
#mainContent p{
    margin:2%;
}

.imageDump{
    /* display: flesx; */
    height:auto;
    flex-direction: column;
    align-items: center;
    margin:2%;
}

.imageDump img{
    width:50%;
}

h2{
    font-family: popstarpop;
    margin:1.5em;
}
.row{
    display: flex;
    flex-direction: row;
    margin-top: 1.5em;
    justify-content: center;
    max-width: 100%;
}
.row img{
    max-height: 30vh;
    object-fit: contain;
    /* max-width:50%; */
}

ul li{
    list-style:square;
}

ul{
    margin:1em;
}

@media screen and ((max-height:900px) or (max-width: 1600px)) {
    #title{
        font-size: 15pt;
    }
}
