@font-face {
    font-family: 'minimal';
    src: url(../fonts/minimal.ttf);
}
@font-face {
    font-family: 'pop';
    src: url(../fonts/pop.ttf);
}
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: clip;
    scroll-behavior: smooth;
}
* {
    cursor: default;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fa-user, .fa-house, .fa-brands, .fa-bars, .fa-music, .fa-xmark, .fa-solid {
    cursor: pointer;
}
::-webkit-scrollbar {
    display: none;
}

.hyperlink-landing {
    width: 0;
    height: 0;
    opacity: 0;
}





/* Fixed Logo */
.fixed-logo-container {
    transition: all 0s ease, background-color 0.3s ease;
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: 100px;
    height: fit-content;
    display: flex;
    z-index: 9999;
    mix-blend-mode: difference;
}
.fixed-logo-container::after {
    content: "";
    color: black;
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: 100px;
    height: 100px;
}
.fixed-logo {
    position: relative;
    width: 100%;
    height: auto;
}



/* Font Awesome Streaming Styles */
.fa-solid.fa-play {
    color: white;
    background-color: red;
    outline: 1px solid white;
    outline-offset: -5px;
    padding: 3px;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80%;
    margin: 0;
}
.fa-solid.fa-music {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    color: white;
    padding: 3px;
    border-radius: 5px;
}
.fa-brands.fa-spotify {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #11FF55;
    background-color: black;
    padding: 3px;
    border-radius: 5px;
}



/* Page First View */
.landing-container.no-display {
    background: url("../images/backgrounds/IMG_5205.png");
    overflow: clip;
    width: 0;
    height: 0;
    opacity: 0;
}
.landing-container {
    width: 100%;
    height: 100%;
    overflow: clip;
    padding: 0;
    margin: 0;
    background-color: black;
}
.landing-container.loaded {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.landing-container.loaded::before {
    content: "";
    background-color: black;
    background: url("../images/backgrounds/IMG_5205.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    filter: brightness(0.95) blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: landing-animate 1s ease-in-out 1;
    z-index: 0;
}
@keyframes landing-animate {
    0%, 15% {
        filter: brightness(0) blur(20px);
    }
    100% {
        filter: brightness(0.95) blur(10px);
    }
}

.loading-container {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: clip;
}
.loaded-container {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s ease 1s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
}
.loaded-container h1 {
    font-size: calc(1.5vw + 1.5vh);
}

.hyperlink-container {
    width: 100%;
    height: fit-content;
    min-height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.hyperlink-container a {
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    margin: 25px;
}



/* Songs Container */
.songs-container {
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    overflow-x: clip;
    overflow-y: auto;
}
/* Song Item */
.songs-container .song-item {
    width: calc(40% - 20px);
    height: fit-content;
    min-height: 10vh;
    margin: 5% calc(30% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* Song Cover Image Con */
.songs-container .song-item .song-img-con {
    width: fit-content;
    max-width: 80%;
    height: fit-content;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.songs-container .song-item .song-img-con .song-img {
    position: relative;
    overflow: clip;
    width: calc(10vw + 10vh);
    height: auto;
    max-width: 100%;
    pointer-events: none;
}
.songs-container .song-item .song-img-con .song-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}
/* Song Metadata */
.songs-container .song-item .song-metadata-con {
    width: 100%;
    height: fit-content;
    min-height: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Song Title */
.songs-container .song-item .song-metadata-con .song-title,
.songs-container .song-item .song-metadata-con .song-type-duration {
    width: 100%;
    height: fit-content;
    min-height: 5px;
    max-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Song Links Container */
.songs-container .song-item .song-links-con {
    width: 100%;
    height: fit-content;
    min-height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* Song Link Item */
.songs-container .song-item .song-links-con .link-item {
    text-align: center;
    text-decoration: none;
}





/* Socials Container */
.socials-container {
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    overflow-x: clip;
    overflow-y: auto;
}
.socials-container .social-item {
    width: calc(40% - 20px);
    height: fit-content;
    min-height: 10vh;
    margin: 5% calc(30% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* Social Image Con */
.socials-container .social-item .social-img-con {
    width: fit-content;
    max-width: 80%;
    height: fit-content;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.socials-container .social-item .social-img-con .social-img {
    position: relative;
    overflow: clip;
    width: calc(10vw + 10vh);
    height: auto;
    max-width: 100%;
    pointer-events: none;
}






/* Games Container */
.games-container {
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    overflow-x: clip;
    overflow-y: auto;
}





/* Footer */
.footer {
    width: 100%;
    height: fit-content;
    min-height: 10vh;
    max-height: 25vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
}
.footer .footer-copyright-con {
    width: 25%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    font-size: calc(0.25vw + 0.5vh);
    margin: 0;
    margin-bottom: 2vh;
    padding: 0;
    padding-right: 2vw;
}
.footer .footer-copyright-con p {
    padding: 0;
    margin: 0;
}
.footer .footer-links-con {
    width: 75%;
    height: fit-content;
}





/* Media Queries */
@media only  screen and (max-width: 900px) {
    .songs-container, .socials-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .songs-container .song-item, .socials-container .social-item {
        width: 50%;
        padding: 10px 0;
        margin: 5% 25%;
    }
}
@media only screen and (max-width: 700px) {
    .songs-container, .socials-container {
        display: block;
    }
    .songs-container .song-item, .socials-container .social-item {
        width: 50%;
        padding: 10px 0;
        margin: 5% 25%;
    }
    .hyperlink-container {
        flex-direction: column;
    }
    .loaded-container h1 {
        font-size: calc(2vw + 2vh);
    }
}
@media only screen and (min-width: 1200px) {
    .songs-container, .socials-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .songs-container .song-item, .socials-container .social-item {
        width: calc(50% - 20px);
        padding: 10px;
        margin: 5% 25%;
    }
}