body {
	padding: 10px;
	background: #2d2b5a;
    background-image: url("../img/tile-strawberry.png");
    background-image: url("../img/tile-strawberry.png"), linear-gradient(0deg, rgba(45,43,90,1) 0%, rgba(106,72,126,1) 100%);
	background-attachment: fixed;
	color: #5c3363;
}

::selection {
    color: #b43b6b;
    background: #ebc6df;
  }

  h3 {
	font-size: 30px;
	font-variant: small-caps;
	background-color: #2d2b5a;
	color: white;
	text-align: center;
	margin: 2px 4px;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "containee";
    height: 600px;
    width: 800px;
    padding: 0px;
    margin: auto;
    margin-top: 0;
    background-color: #f9eef5;
    border: 1px solid #2d2b5a;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5));
    overflow: hidden;
}
.containee {
    display: grid;
    grid-template-columns: 0.02fr 2fr 0.04fr 1fr 0.02fr;
    grid-template-rows: 0.05fr 1fr 0.05fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "top top top top top"
        "lef main mid menu rig"
        "bott bott bott bott bott";
    justify-content: stretch; 
    align-content: stretch; 
    justify-items: stretch; 
    align-items: stretch; 
    grid-area: container;
    height: 600px;
    width: 800px;
    margin: auto;
}

.top {
    grid-area: top;
    background-color: #ebc6df;
    border-bottom: solid #2d2b5a 1px;
    align-content: center;
    font-size: 12px;
}

.lef {
    grid-area: lef;
}

.mid {
    grid-area: mid;
}

.rig {
    grid-area: rig;
}

.main {
    grid-area: main;
}

.menu {
    grid-area: menu;
}

.bott {
    grid-area: bott;
    background-color: #ebc6df;
    border-top: solid #2d2b5a 1px;
    text-align: center;
    align-content: center;
    margin: 0;
    font-size: 12px;
}

#containers {
	width: 100%;
	height: 100%;
	border: none;
	margin: 0;
	scrollbar-color: #2d2b5a #ebc6df;
	scrollbar-width: thin;
}

hr.dashed {
    background: none;
    width: 0px;
    height: 100%;
    border: 1px dashed #2d2b5a;
    margin: 0 auto;
}

	/* Links */
a {
    color: #b43b6b;
    font-weight: bold;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    transition: all .4s ease-in-out; 
}
a:hover {
    color: #2d2b5a;
}

.head {
    margin: auto;
    margin-top: 30px;
    background-image: url("../img/head/pixel_header.png");
    height: 100px;
    width: 802px;
}