/* Sometimes you catch an exposed edge around the card holder space; fix it here */
html,
body {
    background: linear-gradient(to left, #feac5e, #c779d0, #4bc0c8);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-around;
    margin: 0;
    padding-bottom: 3rem;
    overflow-x: hidden;
    height: 100vh;
}
/* This contains flashing name AND link bar */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
/* Full div containing navigation links */
.top-bar {
    display: flex;
    width: 75vw;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 3rem;
    color: rgb(84, 84, 84);
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}
/* This is each navigation link individually */
.refrences,
.resources,
.rendered {
    font-family: "Press Start 2P", cursive;
    font-size: 1.7rem;
    transition-timing-function: ease-in-out;
    transition-duration: 1.3s;
}
.resources {
    font-size: 2rem;
    color: rgba(255, 237, 44, 0.7);
    text-transform: uppercase;
    transition-duration: 0.3s;
}
.resources:hover {
    cursor: pointer;
    opacity: 0.3;
}
/* State of the links - ALL */
a {
    transition-timing-function: ease-out;
    transition-duration: 0.5s;
}
/* link specifics REFRENCES */
.lref:link {
    text-decoration: none;
    color: rgb(184, 43, 50, 0.5);
}
.lref:visited {
    text-decoration: none;
    color: rgb(184, 43, 50, 0.5);
}
.lref:hover {
    cursor: pointer;
    transform: scale(1.2);
    color: rgb(184, 43, 50, 0.8);
}
.lref:active {
    text-decoration: none;
    color: rgb(184, 43, 50, 0.5);
}
/* END */
/* link specifics RENDERS */
.lren:link {
    text-decoration: none;
    color: rgb(103, 167, 93, 0.5);
}
.lren:active {
    text-decoration: none;
    color: rgb(103, 167, 93, 0.3);
}
.lren:hover {
    cursor: pointer;
    transform: scale(1.2);
    color: rgb(103, 167, 93, 0.8);
}
.lren:visited {
    text-decoration: none;
    color: rgb(103, 167, 93, 0.5);
}

/* end of link customization */
/* Currently with a flip and a flash */
.name-thang {
    color: rgba(113, 113, 113, 0.624);
    display: flex;
    padding: 0.5rem 4rem;
    font-family: "Libre Barcode 39 Text", cursive;
    font-size: 3.5rem;
    background-color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Full card area background. May be unneccessary */
.card-shell {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-evenly;
    margin-right: 1rem;
    margin-left: 1rem;
}
/* The card itself with hover-scale specifics included */
.card {
    box-sizing: border-box;
    display: flex;
    padding: 1rem;
    flex-direction: column;
    background-color: rgb(255, 214, 214);
    width: 30rem;
    height: 40rem;
    text-align: center;
    min-height: 32rem;
    margin: 0.5rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.205);
    border-radius: 16px;
    backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    box-shadow: 0.5px 4.6px 10.5px -24px rgb(0, 0, 0),
        1.2px 11.7px 26.6px -24px rgba(0, 0, 0, 0.642),
        2.5px 23.9px 54.2px -24px rgba(0, 0, 0, 0.517),
        5.1px 49.3px 111.7px -24px rgba(0, 0, 0, 0.413), 14px 135px 306px -24px rgba(0, 0, 0, 0.288);
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0.4s;
    cursor: pointer;
}
/* On hover -- */
.card:hover {
    position: relative;
    transform: scale(1.3);
    background: rgba(253, 145, 194, 0.205);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    min-width: 20rem;
    min-height: 20rem;
    z-index: 10;
    margin: 8rem 12em;
}
/* Photosizing. Tricky! */
img {
    min-width: 27rem;
    height: auto;
}
/* Div for full text content */
.the-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 2rem;
    text-align: center;
}
.titler {
    display: flex;
    font-family: "Press Start 2P", cursive;
    font-size: 2rem;
}
.descriptor {
    margin-top: 1rem;
}

/* Images oversized and uncenterd on mobile without this  */
@media (max-width: 2000px) {
    .pics {
        min-width: 1rem;
        min-height: 1rem;
        max-height: 22rem;
    }
    .card {
        min-height: 25rem;
        max-height: 30rem;
        min-width: 22rem;
    }
    .card-shell {
        width: 100vw;
    }
    .titler {
        font-size: 1.3rem;
    }
}
button {
    color: rgb(56, 56, 56);
    padding: 1rem;
    border-radius: 1rem;
    border: none;
    transition-duration: 1s;
    font-size: 0.8rem;
    font-family: "Lobster", cursive;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    margin-top: 1rem;
}
button:hover {
    opacity: 0.7;
    background-color: rgb(255, 255, 255);
}
