/* imported font */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* page colors */
:root {
  --text-color: #e5ddd6;
  --link-color: #7f7569;
  --bg-color: #453930;
  --mainbg-color: #342c27;
  --border-color: black;
  --accent-color: #cbc0b6;
  --shadow-color: #241e1a;
}

/* scroll bar */
::-webkit-scrollbar {
width: 14px
}
::-webkit-scrollbar:horizontal {
height: 14px
}
::-webkit-scrollbar-corner {
background: #eee
}
::-webkit-scrollbar-track:vertical {
background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
border-radius: 5px; 
}
::-webkit-scrollbar-track:horizontal {
background: linear-gradient(180deg, #e5e5e5, #f0f0f0 20%);
border-radius: 5px; 
}
::-webkit-scrollbar-thumb {
border: 1.5px solid #888;
border-radius: 5px;
box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
}
::-webkit-scrollbar-thumb:vertical {
background: linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
}
::-webkit-scrollbar-thumb:horizontal {
background: linear-gradient(180deg, #eee 45%, #ddd 0, #bbb);
}

/* body css/initial div positioning */
body {
  background-image: url(../Images/grid.jpg);
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
}
.content {
  width: 1000px;
  display: flex;
  position: relative;
  padding-top: 10px;
}

/* highlight style */
::selection {
  background: var(--accent-color);
}

/* link style */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-shadow: 1px 1px 10px var(--link-color);
  letter-spacing: 2px;
}

/* heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: times new roman;
  font-size: large;
  font-style: italic;
  letter-spacing: 1px;
}
h1 {
  background-color: var(--shadow-color);
  position: sticky;
  top: -15px;
  width: auto;
  height: 30px;
  padding: 0px 10px 5px 10px;
  margin: -15px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-family: "VT323", monospace;
  font-style: normal;
  font-size: xx-large;
}
h2 {
  background-color: var(--shadow-color);
  position: sticky;
  top: -10px;
  width: auto;
  height: 30px;
  padding: 5px 10px 0px 10px;
  margin: -10px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-family: "VT323", monospace;
  font-style: normal;
  font-size: x-large;
}
h3 {
  font-family: "VT323", monospace;
  font-style: normal;
}

.textbox {
  width: 330px;
  position: absolute;
  left: 80px;
  top: 190px;
  border: 1px solid var(--border-color);
  background-color: var(--mainbg-color);
  padding: 10px;
  text-align: center;
  font-family: "VT323", monospace;
  font-size: 16px;
  z-index: 3;
  box-shadow: 5px 5px var(--shadow-color);
}

.musicplayer {
  position: absolute;
  top: 20px;
  left: 0px;
  box-shadow: 5px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
}


img {
  position: absolute;
  box-shadow: 5px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
}

#memories {
  width: 150px;
  left: -90px;
  top: 190px;
}

#microbiome {
  width: 200px;
  left: -140px;
  top: 360px;
}

#heart {
  width: 200px;
  left: 80px;
  top: 470px;
}

#earth {
  width: 150px;
  left: -170px;
  top: -20px;
}

#spiral {
  width: 160px;
  left: 515px;
  top: 470px;
  filter: grayscale(50%);
}

#mountain {
  width: 160px;
  left: 660px;
  top: 295px;
}

#girl {
  width: 200px;
  left: 445px;
  top: 150px;
}

#pattern {
  width: 100px;
  left: -210px;
  top: 180px;
}

#brain {
  width: 90px;
  left: 340px;
  top: 100px;
}

#legs {
  width: 90px;
  left: 340px;
  top: -5px;
}

#quote {
  width: 200px;
  left: 300px;
  top: 470px;
}

#soul {
  width: 160px;
  left: 660px;
  top: 150px;
}

#fossils {
  width: 150px;
  left: 445px;
  top: -60px;
  filter: grayscale(50%);
}

#moss {
  width: 200px;
  left: 610px;
  top: 15px;
}

#ctrl {
  width: 80px;
  left: 690px;
  top: 470px;
}

#messages {
  width: 200px;
  left: 660px;
  top: 370px;
}

#noai {
  border: 0;
  box-shadow: none;
  position: absolute;
  left: 840px;
  top: 280px;
}

@media (max-width: 800px) {
  .content {
    margin-left: -70px;
  }
}