/* Import fonts */
@font-face {
    font-family: 'TerminessNerdFont-Bold';
    src: url('./fonts/TerminessNerdFont-Bold.ttf');
}

@font-face {
    font-family: 'GothicPixels';
    src: url('./fonts/GothicPixels.ttf');
}

/* style */
html {
    font-family: 'TerminessNerdFont-Bold';
    font-size: 12px;
    width: 100%;
    height: 100%;
    color: black;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

html::selection {
    color: white;
    background-color: #555;
}

body {
    margin: auto;
    margin-top: 20px;
    max-width: 800px;
}

main {
    width: 100%;
    height: fit-content;
    text-align: left;
}

textarea, button, input {
    border-radius: 0;
    border: 1px dotted black;
    font-family: 'TerminessNerdFont-Bold';
    font-size: 12px;
    width: calc(100% - 6px);
    resize: 0;
}

button {
    width: 100%;
}

hr {
    border: 1px solid black;
    border-top: 0px;
}

a {
    color: black;
}

h1, h2, h3, p {
    margin: 0;
}

h1, h2, h3, b {
    font-family: 'GothicPixels';
}

textarea {
    resize: none;
}

blockquote {
    border: none;
    border-left: 1px solid black;
    padding-left: 10px;
    margin-left: 0px;
}

blockquote footer {
    margin-top: 5px;
    font-style: normal;
    font-size: 0.9em;
    color: #555;
}

q {
    font-style: italic;
}

img {
    border-style: double;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('https://images4.imagebam.com/4e/66/50/ME12BN86_o.png');*/
    background-image: url('./forest-foggy.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(5px) saturate(50%) grayscale(100%);
}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.content {
    background-color: #fff;
    padding: 15px;
    margin: 5px;
    margin-top: 10px;
    border-style: double;
    box-shadow: 5px 5px 0px black;
    flex: 1;
    max-width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 0px;
}

.header hr {
    margin: 10px;
}

.header-title {
    font-family: 'GothicPixels';
    font-size: 48px;
}

.header-item {
    color: black;
    flex: 1;
    text-decoration: none;
}

.header-item:hover {
    text-decoration: dotted underline;
}

.sidebar {
    width: 225px;
    text-align: left;
}

.sidebar-image {
    width: 100%;
}

.resource {
    display: flex;
    gap: 10px;
}

.song {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    text-decoration: none;
    transition: padding 0.2s;
    text-wrap: wrap;
}

.song:hover {
    padding-left: 10px;
}

.song-title {
    margin-top: 5px;
    text-decoration: underline;
}

.song-cover {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.mac-container {
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.mac-container::before,
.mac-container::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #000;
}

.mac-container::before {
    margin-right: 10px;
}

.mac-container::after {
    margin-left: 10px;
}

.mac-text {
    white-space: nowrap;
    padding: 0 10px;
}

#rss-feed hr {
    margin-bottom: 16px;
}