:root {
    --offwhite: #f5eded;
    --porcelain: #e2ded5;
    --orange: #ff621dff;
    --darkorange: #d64e13;
    --lavender-blush: #f3e8eeff;
    --ash-grey: #bacdb0ff;
    --muted-teal: #729b79ff;
    --apricot-cream: #edcb96ff;
    --peach-fuzz: #f7c4a5ff;
    --dusty-mauve: #9e7682ff;
    --vintage-grape: #605770ff;
    --vintage-grape-2: #4d4861ff;
    --black: #11130eff;
    --onyx: #191d14;
}

@font-face {
    font-family: 'dogica';
    src: url('assets/fonts/dogica.otf');
    font-weight: normal;
    font-style: normal;
    font-display: normal;
}

@font-face {
    font-family: 'notosans';
    src: url('assets/fonts/NotoSans.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: normal;
}

@font-face {
    font-family: 'sono';
    src: url('assets/fonts/sono.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: normal;
}

/* hide scrollbar */
.container {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.container::-webkit-scrollbar { 
    display: none;  /* Older Safari and Chromium */
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/wallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    margin-left: 50px;
    color: var(--onyx);
    font-family: 'sono';
}

h2, h3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
    margin: 52px;
    font-family: 'notosans';
    font-size: 16px;
    color: var(--offwhite)
}

a {
    color: var(--muted-teal)
}

.scrolling-text {
    position: fixed;
    top: 10%;
    padding: 8px;
    font-size: 40px;
    font-family: 'dogica';
    color: var(--orange);
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ---- Dock ---- */

.dock {
    padding: 10px;
    position: fixed;
    bottom: 16px; 
    left: 20%;
    width: 60%;
    border-radius: 16px;
    background-color: var(--muted-teal);
}
    .dock .dock-icon {
        position: relative;
        border-radius: 12px;
        left: 10px;
        float: left;
        background-color: var(--lavender-blush);
    }

.dock-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    margin-left: 20px;
}
    .dock-icon img {
        width: 100%;
        height: auto;
    }
    .dock-icon img:nth-child(2) {
        display: none;
    }
    .dock-icon:hover img:nth-child(1) {
        display: none;
    }
    .dock-icon:hover img:nth-child(2) {
        display: block;
    }
/* ---- END Dock ---- */


/* ---- Status Bar ---- */

.status-bar {
    display: flex;
    justify-content: right;

    position: fixed;
    top: 5px;

    margin: 0;
    padding: 0;

    width: 98vw;
    left: 0.5vw;
    border-radius: 4px;

    border: 2px solid var(--ash-grey);
    background-color: var(--muted-teal);
}
    .status-bar .dock-icon {
        margin: 0;
        margin-right: 20px;
        padding: 0;

        width: 30px;
        height: 30px;
    }
    .status-bar h1 {
        position: fixed;
        left: 50%;
        margin: 0;
        padding: 3px;
        font-size: 20px;
        color: var(--onyx);
    }
    .status-bar p {
        font-family: "dogica";

        margin: 0;
        margin-top: 10px;
        padding: 0px;
        padding-right: 20px;
        font-size: 8px;
        color: var(--onyx);
    }


/* ---- END Status Bar ---- */


/* ---- Window ---- */

.window {
    padding: 0px;
    margin: 0px;

    position: absolute;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    background-color: var(--offwhite);
    border-radius: 16px;
}

/* ---- END Window ---- */


/* ---- gallery image ---- */

.gallery-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 90vh;
    max-height: 100%; 
}

/* ---- END gallery image ---- */

