/* COLOUR PALETTE */
:root {
    --bg: #071821;
    --altBg: #e0f8cf;
    --txt: #e0f8cf;
    --altTxt: #EC8C8C;
    --invTxt: #071821;
    --link: #86C06C;
    --linkV: #306850;
    --linkH: #E0F8CF;
}



*{
    box-sizing: border-box;
}


body {
    max-width: 1300px;
    margin: auto;
    background-color: var(--bg);
    color: rgb(0, 0, 0);
  font-family: monospace;
  scrollbar-width: none;
  overflow-x: hidden;
}

.bodyDiv {
    border: 1px solid black;
    border-top: 0;
    border-bottom: 0;
    background: #306850;
}

header {
    text-align: right;
    background: #306850;
}

.headerTop {
    color: #6A041D;
    background-color: #6A041D;
    height: 200px;
}

header h1 {
    margin-right: 10px;
    border-right: 5px solid var(--altTxt);
    background: #306850;
    padding-top: 20px;
}

.bodyDivExcHead {
    padding-left: 5px;
    padding-right: 5px;
}

nav {
    margin-top: -10px;
    float: left;
    width: 100%;
    height: 30px;
    padding-bottom: 40px;
    border-radius: 5px;
    background-color: var(--bg);
    text-align: center;
}

.navText {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.navTextTitle {
    float: left;
    width: 20%;
    display: flex;
    justify-content: flex-end;
}

.navTextScrollDiv {
    float: right;
    width: 80%;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
}

#navTextScroll {
    position: relative;
    text-align: left;
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
    transform: translateX(110%);
    animation: scroll-left 30s linear infinite;

}

@keyframes scroll-left {
    0% {
        transform: translateX(110%);
    }
    100% {
        transform: translateX(calc(-250%));
    }
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px 5px;
    width: 100%;
    padding-top: 10px;
}

/* ASIDE ELEMENTS */
aside {
    width: 20%;
    color: var(--txt);
    display: flex;
    flex-direction: column;
}

.floorplanDiv {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    background: var(--bg);
    padding-left: 10px;
    border-radius: 5px;
}

.linksDiv {
    background: var(--bg);
    padding-left: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.asideLink {
    padding-left: 10px;
    text-decoration: none;
}

/* MAIN ELEMENTS */
main {
    color: var(--txt);
    float:left;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcomeDiv {
    background: var(--bg);
    border-radius: 5px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.welcomeText {
    display: inline;
}

.SiteInfoDiv {
    background: var(--bg);
    border-radius: 5px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.creditListDiv {
    padding-top: 10px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buttonWallDiv {
    background: var(--bg);
    border-radius: 5px;
    padding-left: 10px;
    padding-bottom: 10px;
}

/* SECTION ELEMENTS */
section {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.musicDiv {
    background-color: var(--bg);
    border-radius: 5px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.updateLogDiv {
    background-color: var(--bg);
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.updateLogInnerDiv {
    background-color: var(--altBg);
    overflow-y: scroll;
    height: 160px;
    width: 200px;
}

.guestbookDiv {
    background-color: var(--bg);
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

/* ITEM-SPECIFIC CSS */
a {
    color: var(--link);
}

a:hover {
    color: var(--linkH);
}

a:visited {
    color: var(--linkV);
}

p {
    color: var(--txt);
}

.altText {
    color: var(--altTxt);
}

.invText {
    color: var(--invTxt);
}

img {
    max-width: 200px;
    max-height: 200px;
}

footer {
    display: block;
    clear: both;
    background-color: rgb(255, 255, 255);
    text-align: left;
    border-style: solid;
    border-top: 0;
    
    
    
}

#txtCommand {
  outline:none;
  border:none;
  margin:0;
  padding:0;
  width: 80%;
  background-color:white;
  font-family: monospace;
}



@media screen and (max-width:800px) {
        aside, section, article {
            width: 100%;
        }
}