@font-face{
    font-family: 'edo';
    src:url('assets/fonts/edosz.ttf') format('truetype');
}
:root {
    --bg: #050505;
    --panel: #11100d;
    --panel-raised: #19160e;

    --gold-dark: #66501d;
    --gold: #c39a32;
    --gold-light: #e5c565;

    --text: #e4dfd2;
    --muted: #8d887d;
}

header h1{

    font-size: 48px;
    letter-spacing: 5px;

}
h2,h3{
    color: var(--gold-light);
    font-family: "IBM Plex Mono", monospace;
    font-size : 25px;
}
h3{font-size: 20px}

a {
    color: var(--gold);
}

a:hover {
    color: var(--gold-light);
}
p{
    color: var(--text);
}
body {
    background-image: url("assets/images/backgroundimg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    font-family: "Yuji Syuku", serif;

    color: white;
    margin: 0;
    min-height: 100vh;

    overflow-x: auto;
    overflow-y: hidden;
}
header{
    font-family: "edo", sans-serif;
    position: fixed;

    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;

    z-index: 10;

}
.header-crest {
    width:  150px;
    height: 150px;
    object-fit: contain;
}
header h1{
    margin: 0;

    color: var(--gold);
    font-size: 60px;
    letter-spacing: 7px;
    text-shadow:
            3px 3px 0 #000;
}
header p{
    margin: 0;

    color: var(--muted);
    font-size: 20px;
    letter-spacing: 5px;
}
.header-line {
    flex: 1;
    height: 1px;

    background: var(--gold-dark);
}
.header-title {
    text-align: center;
}
.layout {
    display: grid;
    position: relative;
    grid-template-columns: repeat(10, 235px);
    grid-template-rows: 100px repeat(3, 180px);
    width: max-content;
    row-gap: 50px;
    column-gap: 60px;
    padding: 75px;

    margin-left: 200px;


}
#sidebar{
    grid-column: 1;
    grid-row: 2/5;

    background-color: var(--panel);

    border: 1px solid var(--gold-dark);

    box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.55),
            inset 0 1px 0 rgba(255, 220, 120, 0.06);

}

#content {
    grid-column: 2/6;
    grid-row: 2/5;

    background-color: var(--panel);
    color: var(--text);



    padding: 25px;
    border: 1px solid var(--gold-dark);

    box-shadow:
            0 20px 50px rgba(0,0,0,.8),
            0 0 80px rgba(0,0,0,.35);

}


#content h2 {
    text-align: center;
}

.widget {
    background-color: var(--panel);
    color: var(--text);
    padding: 15px;

    border: 2px solid var(--gold-dark);

    box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.55),
            inset 0 1px 0 rgba(255, 220, 120, 0.06);
}

#container {
    display: flex;
    width: max-content;
}
#music {
    grid-column: 6 / 7;
    grid-row: 2 / 4;

    perspective: 1000px;
    cursor: pointer;
}

.widget-inner {
    position: relative;
    width: 100%;
    height: 100%;

    transition: transform 0.6s;
    transform-style: preserve-3d;
}

#music.flipped .widget-inner {
    transform: rotateY(180deg);
}

.music-front,
.music-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.music-back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
}

#music h3 , #music p {
    text-align: center;
    color: var(--gold-light)
}
#music p{
    font-size: 17px;
    margin: 15px;
}
.song-name .artist-name{
    margin: 0;
}
.album-cover{
    width: 125px;
    height: 125px;

    margin: 15px auto;
    display: block;

}
.music-line{
    height: 2px;
    background-color: var(--gold-light);
    margin: 1px 0;
}

html,
body {
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
