body {
    color: white;
    background-color: black;
    background-image: url(d02-bg-rose.png);
    margin-top: 1%;
    margin-bottom: 5%;
    margin-left: 15%;
    margin-right: 13%;
}
    
.highlight{
    display:flow-root;
    padding: .25em ;
    color: rgba(245, 245, 245, 1.0);
    background: rgba(68, 0, 0, 0.5);
}

.container {
    display: grid;
    grid-template-columns: 1fr auto; /* Three columns, one three times as wide as the others */
    grid-template-areas: 
    "header header"
    "sidebar intro"
    "main main"
    "decor decor"
    "footer footer";
    row-gap: 1%;
    column-gap: 5%;
}

.container div.header {
    grid-area: header;
    place-self: center;
    width: 80%;
    height: 80%;
    color:whitesmoke;
    text-align: center;
    font-size: x-large;
    padding: 10px;
    background-image: url("tw200-002-e.gif");
    background-repeat: no-repeat;
    image-rendering: crisp-edges;
    background-position: center;
    background-size: cover;
    border-style: dashed;
    border-color: whitesmoke;
    border-width: 0.2em;
}

.container div.sidebar {
    grid-area: sidebar;
    align-self: top;
    align-content: center;
    color:black;  
    padding: 20px;
    width: 95%;
    /*border-color: whitesmoke;
    border-style: solid;
    border-width: 3px;*/
    background-image: url("pf023-plate-v03.gif");
    background-size: 270px 500px;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    background-position: center;
}

.container div.intro {
    grid-area: intro;
    color: rgba(245, 245, 245, 1.0);
    font-size: large;
    background-image: url("j01-bg-halloween.gif");
    background-repeat: repeat;
    image-rendering: smooth;
    height:90%;
    text-align: center;
    padding: 15px;
    border-style: double;
    border-color: whitesmoke;
    border-width: 0.3em;
}

.container div.main {
    grid-area: main;
    place-self: center;
    color: rgba(245, 245, 245, 1.0);
    font-size: large;
    background-image: url("j01-bg-halloween.gif");
    background-repeat: repeat;
    image-rendering: smooth;
    height:fit-content;
    width: 90%;
    text-align: center;
    padding: 15px;
    border-style: double;
    border-color: whitesmoke;
    border-width: 0.3em;
}

.container div.decor{
    grid-area: decor;
    place-self: center;
    color:black;
    text-align: center;
    align-content: center;
    padding-bottom: 15px;
    width: 70%;
    height: 90%;
    background-image: url("pf023-plate-v05.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;  
    image-rendering: pixelated;
    border-color: black;
    border-width: 0.3em;
    border-style: solid;
}


.container div.footer {
    grid-area: footer;
    place-self: center;
    text-align: center;
    width: 62%;
    height: auto;
    color:white;
    border-color: white;
    border-style: dotted;
    border-width: 3px;
    background-color: rgba(68, 0, 0, 0.8);
}

/*.container div.ribbon{
    background-repeat: repeat-y;
    max-height: 20px;
}*/

/*  color:whitesmoke;  
    background-color: #660000;
    text-align: center;
    padding: 10px;
    border-style: double;
    border-color: whitesmoke;
    border-width: 0.2em;
    
    */

/* p {
    color: whitesmoke;
    background-color: #660000;
    max-width: 2000px;
    height:fit-content;
    text-align: center;
    padding: 20px;
    margin-right: 50px;
    border-style: double;
    border-color: whitesmoke;
    border-width: 0.2em;
}*/
