@font-face {
  font-family: Lexend;
  src: url("lexend.ttf");
}

@font-face {
  font-family: PrimaSansMono;
  src: url("primasansmono.ttf");
}

html {
    background: #fff0f6;
    font-family: Lexend;
    font-size: 30px;
    color: black;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh; /* Ensure full viewport height */
}

.grid-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Make sure container grows with content */
}
  
.content-container {
    display: flex;
    flex-grow: 1; /* This allows it to take remaining space */
}

.icon {
  height: 1em;
}

  
.header {
    background: #fff0f6;
    height: 15vh;
    z-index: 2;
    /*background: #FBAFE0;
    background-image: url("button.png");
    background-size: 100% 100%;*/
    outline-style: solid;
    outline-width: 5px;
    outline-color: #a64d79;
    overflow: hidden;
    padding-left: 15%;
}
  
  
.body-item {
    padding:20px;
    box-sizing: border-box;
    z-index: 0;
    width: 85%;
}


.sidebar {
    padding:30px;
    box-sizing: border-box;
    z-index: 1;
    width: 15%;
    word-wrap: break-word;
    overflow:hidden;
    font-size:20px;
    outline-style: solid;
    outline-width: 5px;
    outline-color: #a64d79;
}

h1 { 
    color:#a64d79;
    font-size: 60px;
    /*text-shadow: 6px 2px #000000;*/
    font-weight: normal;
    display: inline-block;
}

h2 {
    color: #a64d79;
    font-size: 50px;
    font-weight: normal;
}

h3 {
    font-size: 40px;
    font-weight: normal;
}

.small-desc {
  color: #666666;
  font-size: 20px;
}

.code-box {
    margin: auto;
    font-family: PrimaSansMono;
    background: #b7b7b7;
    word-wrap: break-word;
    outline-style: solid;
    outline-color: #a64d79;
    outline-width: 2px;
    width: 100%;
    margin-bottom: 40px;
}

a {
  color: #a64d79;
}


button {
    font-family: Lexend;
    font-size:30px;
    border: none;
    margin-bottom: 15px;
    background: #fff0f6;
    color: #a64d79;
    transition: transform 0.3s ease;
    cursor: pointer;
}
button:hover {
  
  transform: scale(1.1);

}

table {
  border-collapse: collapse;
  width: 60%;
  margin: 20px;
}
th, td {
  border: 5px solid #a64d79;
  padding: 10px;
  text-align: left;
}
th {
  color:#e69138;
}


#game-directory > h2 {
  color: #6aa84f;
}

#game-directory-button {
  color: #6aa84f;
}

#game-directory > .code-box {
  outline-color: #6aa84f;
}

#scripting-logic > h2 {
  color: #674ea7;
}

#scripting-logic-button {
  color: #674ea7;
}

#scripting-logic > .code-box {
  outline-color: #674ea7;
}

#download > h2 {
  color: #e69138;
}

#download-button {
  color: #e69138;
}

#download > .code-box {
  outline-color: #e69138;
}

.sidebar > h3 {
  color: #45818e;
}