@charset "utf-8";

/*
    CSS Page of "Exploring Hollow Knight"
    Author: Joel Joaquin Nunez
    Date: 03/24/2026
    Filename: soundtrack.css
*/

/* ===== html ===== */
    html {
        background: black;
    }
/* ===== body ===== */
    body {
        margin: auto;
        height: 100vh;
        min-width: 530px;
        max-width: 1280px;
    }
/* ===== header ===== */
    header {
        width: 100%;
        color: white;
    }
    header h1 {
        text-align: center;
        background-color: rgb(0, 0, 0);
    }
/* ===== nav ===== */
    .horizontalnav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .horizontalnav ul {
        background: black;
        display: flex;
        justify-content: space-between;
    }
    .horizontalnav li {
        flex: 1;
    }
    .horizontalnav a {
        display: block;
        text-align: center;
        padding: 10px;
    }
    a:hover {
        background-color: rgba(255,255,255, 0.1);
    }
/* ===== container ===== */
    .contentcontainer {
        display: flex;
        flex-direction: row;
        max-width: 100%;
        margin: 20px auto 20px auto;
        gap: 20px;
        padding: 20px;
        background: rgb(16,16,16);
    }
    .contentcontainer.variable {
        display: flex;
        background: transparent;
        padding: 0;
        margin: auto;
        flex: 1;
    }
    .container-img {
        width: 50%;
        aspect-ratio: 4/3;
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 100%;
    }
    .container-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 10px 0px;
    }
    .container-text  h2 {
        margin-bottom: 10px;
    }
    .container-text p {
        line-height: 1.5em;
        font-style: italic;
        margin-top: 5px;
    }
    h3 {
        margin-top: 10px;
    }
/* ===== images ===== */
    .albumcoverhollow {
        background: url(HK_ALBUM_COVER.jpg) center / contain no-repeat;
    }
    .albumcoversilk {
        background: url(albumcoversilksong.jpg) center / contain no-repeat;
    }
/* ===== footer ===== */
    .teamcherry {
        width: 120px;
        height: 100px;
        margin: auto;
    }
    .teamcherry a {
        display: block;
        height: 100%;
        width: 100%;
        color: white;
    }
    .tc-link {
        background: url(team_cherry_logo_big_red.png) center / contain no-repeat;
    }
        /* ===== media queries ===== */
            @media screen and (max-width: 768px) {
                .contentcontainer {
                    flex-direction: column;
                }
                .container-img, .container-text {
                    width: 100%;
                }
            }