:root {
    --background-color: #242020; /* background color */
    --text-color: #ecf9ff; /* text color */
    --trim-color: #559dcc; /* trim color */
}

::selection {
    background-color: var(--trim-color);
    color: var(--text-color);
    text-shadow: none;
}

@font-face {
    font-family: "Jost";
    src: url(resources/Jost.ttf);
}

html {
    background-image: url(images/chesapeake_bay_bridge.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100% 100%;
    
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--text-color);

    font-family: "Jost";
    font-weight: bold;

    scrollbar-color: var(--text-color) var(--trim-color);
    scroll-behavior: smooth;
}

.window_title {
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    margin-top: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    font-style: italic;
    text-shadow: 0px 0px 15px var(--trim-color);
}

.page {
    width: 100%;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.content {
    box-sizing: border-box;
    padding: 5px;
    width: 50%;
    max-width: 950px;

    text-shadow: 0px 0px 6px black;
}

h1, h2, h3, p { margin: 5px 5px; }

hr { color: var(--text-color); }

a { color: var(--text-color); text-decoration: none; }

a:hover { color: var(--trim-color); }

a img:hover { filter: brightness(120%); box-shadow: #ecf9ff 0 0 8px;}

.big_text { font-size: 350%; }

.little_text { font-size: 100%;}

.gifbar { 
    display: flex; 
    justify-content: center; 
    overflow: hidden; 
    margin-top: auto; 
    width: 50%;
}

.gifbar img { height: 31px; }


.about_me {
    width: 98%;
    padding: 5px 0 5px 5px;
    margin: 5px 5px 5px 0;

    background-color: rgba(0, 0, 0, 0.1);
}

.blog_box {
    max-height: 350px;
    width: 98%;
    padding: 5px 0 5px 5px;
    margin: 5px 5px 5px 0;

    background-color: rgba(0, 0, 0, 0.1);
    overflow: auto;
    overflow-x: hidden;
}

.blog_chapter {
    overflow-y: auto;
}

.blog_chapter h2 { color: var(--trim-color);}

.friend_ring { display: flex; margin-top: 50px;}

.banner_link { margin: 0; padding: 0;}

.side_bars {
    height: 100%;
    width: 25%;
    display: flex;
    flex-direction: column;
}

.music_box {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 8px;

    width: 320px;
    height: auto;
}

.music_player { display: flex; height: 46px;}

.music_player button {
    border-radius: 0;
    border-style: none;
    background-color: transparent;
}

.music_player button:hover { filter: contrast(50%); }

.music_player img { width: 60%; transform: translateY(2px); cursor: pointer; }

.song_title {
    margin: auto 10px auto auto;

    max-width: 190px;
    height: fit-content;
    
    font-size: small;
    font-weight: 100;
}

.seekContainer {
    position: relative;
    width: 100%;
    height: 10px;
    margin-top: 5px;

    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.seekFill {
    width: 0%;
    height: 100%;
    background: var(--trim-color);
    transition: 25ms linear;
}

.playlist_titles {
    background: rgba(0, 0, 0, 0.3);
    font-size: small;
    font-weight: 100;

    cursor: pointer;
}

.playlist_titles div {
    transition: background-color 100ms;
    padding: 3px 3px 3px 5px;
}

.playlist_titles div:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.playlist_titles .active {
    background-color: var(--trim-color);
    color: black;
}

@media only screen and (max-width: 1270px) {
    .music_box {
        position: relative;
        width: 100%;
        top: 30px;
        background: rgba(0, 0, 0, 0.3);
    }
    .page {
        flex-direction: column;
        width: 100%;
    }
    .side_bars {
        width: 96%;
    }
    .friend_ring {
        width: 98%;
    }
    .content {
        width: 98%;
        max-width: none;
    }
    html {
        background-size: cover;
    }
}