/* hi there! please credit me @ goldenfreddy.neocities.org if you copy any of the coding here! thanks :) */

:root {
  width: 100vw;
  height: 100vh;
  background-image: url(https://i.pinimg.com/736x/c8/0f/a3/c80fa399694b0cf8c2d71fa0598735ef.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11pt;
  color: #eb837c;
  text-align: center;
  box-shadow: inset 0px 0px 30px 20px #4a2f13;
}

.maincontain {
  width: 88vw;
  height: 95vh;
  max-width: 1500px;
  max-height: 1000px;
  margin: auto;
}

.mainflex {
  display: flex;
  justify-content: center; 
  align-items: center; 
  flex-direction: row; 
  flex-wrap: nowrap;
  height: 100%;
  width: auto;
  gap: 12px;
  word-break: break-word;
}
/* LEFT BAR */
.flexone {
  display: block;
  height: 85%;
  width: 15vw;
  min-width: 100px;
  left: 0;
  color: #0777a3;
  background-color: #556637;
  overflow: scroll;
  word-break: break-word;
  border: solid #fce75d 2px;
  border-radius: 10px;
  padding: 10px;
}

.flextwo {
  display: flex;
  height: 95%;
  width: 50vw;
  min-width: 200px;
  word-break: break-word;
/* ══════ flex atts ══════ */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 10px;
  gap: 5px;
}
/* RIGHT BAR */
.flexthree {
  display: block;
  overflow:scroll;
  height: 40%;
  width: 20vw;
  min-width: 100px;
  right: 0;
  color: #0777a3;
  background-color: #556637;
  word-break: break-word;
  border: solid #fce75d 2px;
  border-radius: 10px;
  padding: 10px;
}

/* ══════════════════════════════════════════════════════ middle box divs ══════════════════════════════════════════════════════ */
/* HEADER */
.header {
  display: block;
  top: 0;
  height: 10%;
  min-height: 100px;
  width: 100%;
  background-image: url(https://i.pinimg.com/736x/fc/7d/29/fc7d294800e541b562774834b4fadad6.jpg);
  overflow: hidden;
  word-break: break-word;
  border: solid black 2px;
  border: solid #fce75d 2px;
  border-radius: 10px;
  padding: 5px;
}
/* CENTER */
.mainer {
  display: block;
  height: 64.5%;
  min-height: 200px;
  width: 100%;
  background-image: linear-gradient(#556637, #637840);
  overflow: auto;
  word-break: break-word;
  border: solid black 2px;
  border: solid #fce75d 2px;
  border-radius: 10px;
  padding: 10px;
}
/* FOOTER */
.footer {
  display: block;
  bottom: 0;
  height: 7%;
  min-height: 30px;
  width: 100%;
  background-image: url(https://i.pinimg.com/736x/fc/7d/29/fc7d294800e541b562774834b4fadad6.jpg);
  overflow: hidden;
  word-break: break-word;
  border: solid #fce75d 2px;
  border-radius: 10px;
  padding: 5px;
}

.div4 {
  margin: 0;
  position: absolute;
  top: 820px;
  left: 890px;
  
}
/* ══════════════════════════════════════════════════════ text styling ══════════════════════════════════════════════════════  */

::selection {
  background: RGBA(255, 209, 110, 0.3);
}

a:link {
  color: #ffb0c7;
  font-weight: bold;
}

a:visited {
  color: #ffb0c7;
  font-weight: bold;
}

a:hover {
  color: #a3d4ff;
  font-weight: bold;
}

button:hover {
  color: yellow;
  background-color: #4045a3;
  border-radius: 5px;
}

button:active {
  color: yellow;
  background-color: #4045a3;
  border-radius: 5px;
}

ul {
  text-align: left;
  color: #fffcf7;
  list-style: square inside url("https://gifcity.carrd.co/assets/images/gallery95/9e75373c.png?v=26dffab5");
}

hr {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double;
}
/* ══════════════════════════════════════════════════════ custom scrollbar ══════════════════════════════════════════════════════  */

*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: RGBA(255, 166, 120, 0.3);
  border-left: 2px dashed #ffd470;
}

*::-webkit-scrollbar-track:hover {
  background-color: RGBA(255, 166, 120, 0.3);
}

*::-webkit-scrollbar-track:active {
  background-color: RGBA(255, 166, 120, 0.3);
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: RGBA(255, 255, 255, 0.9);
  border: 2px dashed #ffd470;
  border-right: none;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: white;
}

*::-webkit-scrollbar-thumb:active {
  background-color: white;
}
