html {
    background-color: #000;
    background-image: url("/porky/wallpaper.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    color: #c5c8cd;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 16px;
    text-align: center;
    padding: 0px;
    margin: 0px;

    width: 100%;
    height: 100%;
}

body {
    padding: 0px;
    margin: 0px;

    width: 100%;
    height: 100%;
    
    overflow-x: hidden;
    overflow-y: hidden;
}

h1 {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 16px;
    padding: 0px;
    margin: 0px;
    padding-top: 4px;
    padding-bottom: 4px;
}

p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 16px;
    text-align: justify;
    padding: 0px;
    margin: 0px;
    padding-bottom: 8px;
}

a {
    color: #ff0000;
}

#everything {
    display: grid; /* I love drigs */
    grid-template-columns: 1fr 2fr 1fr; /* Sidebars are 1 and main is 2 */
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

#leftcolumn {
    max-width: 256px;
}



.box {
    background-image: linear-gradient(to bottom, #00000066, #00000000, #000000);
    background-clip: border-box;
    background-origin: border-box;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;

    border-style: solid;
    border-width: 16px;
    border-image: url("/porky/deco/wavy_border.png") 96 96 repeat;
    border-image-outset: 0px 4px 0px 4px;

    padding-left: 16px;
    padding-right: 16px;
    margin: 0px;
    margin-top: 8px;

    max-width: 100%;
}

#titleimg {
    max-height: 240px;
    max-width: 100%;
}

#subtitle {
    display: flex;
}

.subtitletip {
    display: inline-block;
    width: 5%;
    text-align: center;
    height: 16px;
    padding: 0px;
    margin: 0px;
    margin-left: 5px;
    margin-right: 5px;
    object-fit: fill;
}

marquee {
    flex-grow: 1;
}



@media (max-width: 768px) {
  #everything {
    grid-template-columns: 1fr;
  }

  #everything > :nth-child(1),
  #everything > :nth-child(3) {
    display: none;
  }
}