
/* BACKGROUND IMAGE */
body {
    background-image: url(https://anotherdoor.neocities.org/images/index/lens_flare_Afterlight.JPG);
    background-position: right center;
}

/* PAGE LAYOUT */
.container {
    display: grid;
    grid-template:
        "Sidebar Header"
        "Sidebar Content"
        "Sidebar Footer"
        / 1fr 2fr;
    grid-gap: 10px;
    padding-top: 90px;
    padding-left: 205px;
    padding-right: 205px;
}

header { grid-area: Header; }
aside { grid-area: Sidebar; }
main { grid-area: Content; }
footer { grid-area:Footer; }

/* SIDEBAR ELEMENTS */
aside {
    width: 300px;
}

.iframe {
    display: block;
    padding: 0px;
    margin: 0px;
    height: 60px;
    text-align: left;
}

.tamonotchi {
    padding: 35px;
}

.feed_me {
    position: absolute;
    height: 70px;
    left: 330px;
    top: 825px;
    z-index: 1;
}

/* HEADER IMAGE */
 .header_image {
    display: block;
    margin: auto;
}

/* NAV BUTTONS */
button {
    display: inline;
    margin: auto;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px;
    border: none;
    width: 110px;
    background-color: #e8fcc2;
    box-shadow: 3px 3px #b1cc74;
}

button:hover {
    background-color: #dcf1b2;
}

button:active {
  background-color: #dcf1b2;
  box-shadow: 3px 3px #90a65e;
  transform: translateY(4px);
}

.navlink {
    color: #363737;
    font-size: 16px;
    text-decoration: none;
}

/* BODY / MAIN */
/* FORMATTING */
.body_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.column {
    padding-left: 10px;
    padding-top: 5px;
    outline-style: dashed;
    max-height:200px;
    overflow-y: auto;
    background: rgba(202, 209, 200, 0.3)
}



/* TEXT */
body {
    font-family: Helvetica, Arial, sans-serif;
    color: #363737;
    font-size: 14px;
    line-height: 1.4;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

h4 {
    text-align: center;
}

/* IMAGE STYLES */
.button {
    margin-left: 7px;
}

