* {
  font-family: monospace;
}

body {
  background-image: url('https://karpverse.net/phone_verse.jpg');
  background-attachment: fixed;
  background-size: cover;
  cursor: url("https://karpverse.net/src/images/karpkursor.png"), auto;
  --sb-track-color: #010cb3;
  --sb-thumb-color: #00d8ff;
  --sb-size: 10px;
}

/* SCROLL BAR CUSTOM  */

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  border: 1px solid #ff7200;
}

@supports not selector(::-webkit-scrollbar) {
  body {
      scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

/* GLOBAL CLASSES */
a {
  color: rgb(255, 174, 0);
  text-decoration: none;
  font-weight: bold;
  transition: 0.8s;
}

a:hover {
  color: rgb(0, 255, 255);
}

img {
  opacity: 1;
  transition: 0.5s;
}

img:hover {
  opacity: 0.7;
}

ul {
  list-style-type: armenian;
}

.code-class {
  background-color: black;
  color: chartreuse;
  font-family: sans-serif;
  font-size: 10px;
}
/* END GLOBAL CLASSES  */


/* RE-USEABLE CLASSES  */
.hidden {
  display: none;
}

.column-class {
  display: flex;
  flex-direction: column;
}

.row-class {
  display: flex;
  flex-direction: row;
}

.center-class {
  display: flex;
  justify-content: center;
  align-items: center;
}

.yellow-text {
  color: yellow;
}

/* NAV BAR AND NAV ELEMENTS  */
#main-banner {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  justify-content: space-between; 
  align-items: center;
  background-color: rgb(0, 107, 214);
  border-bottom: solid;
  border-width: 2px;
  border-color: rgb(35, 19, 208);
  width: 100%;
  opacity: 1;
  z-index: 10;
}

/* NAV logo  */
#banner-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

/* NAV items  */
#banner-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-size: larger;
  margin-right: 20px;
}
/* END NAV BAR  */

#master-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.sidebar-class {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding: 10px;
    width: 18%;
    height: 100%;
    border-radius: 5px;
    opacity: 0.8;
}

#left-sidebar {
    /* background-color:rgba(0, 0, 255, 0.446); */
    opacity: 0.8;
    background-image: url('https://karpverse.net/stars_moving.gif');
    background-attachment: fixed;
    background-size:inherit;
}

#right-sidebar {
    /* background-color: rgb(132, 255, 0);  */
    background-image: url('https://karpverse.net/stars_moving.gif');
    background-attachment: fixed;
    background-size:inherit;
}

.left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: rgb(255, 244, 83);
  border-radius: 5px;
  border-style: groove;
  border-color: slategrey;
}

.right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: rgb(255, 55, 55);
  border-radius: 5px;
  opacity: 1;
}

#web-surfing {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center; 
}

#center-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1px;
    width: 80%;
}

#destiny-div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: aquamarine;
  color: blue;
  padding: 10px;
  font-size: large;
}

#flappy-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
  border: 2px groove rgb(72, 255, 0);
}

#flappy-video {
  width: 150px; 
  height: 220px;
  opacity: 1;
}

#flappy-click {
  width: 150px;
  opacity: 1;
}

.game-button-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
  border: 2px groove rgb(72, 255, 0);
}

.game-click {
  width: 150px;
  height: 50;
  opacity: 1;
  background-color: darkgreen;
}

.chat-box{
  display: flex;
  flex-direction: column;
  border-style: dotted;
  border-width: 3px;
  border-color: orange;
  border-radius: 15px;
  width: 700px;
  height: 500px;
}

#master-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  z-index: 1;
}

.quote-text {
  background-color: black;
  font-size: 4px;
  font-style: italic;
  padding: 10px;
}

#card-text {
  padding: 15px;
}

.main-section {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  background-color: hsl(244, 100%, 32%);
  color: rgb(0, 255, 0);
  font-family: monospace;
  border-style: solid;
  border-color: orange;
  border-radius: 15px;
  margin-top: 100px;
  height: 100%;
  padding: 10px;
  opacity: 0.9;
}

#welcome-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(35, 19, 208);
  padding: 10px;
  border-radius: 5px;
}

#about-karp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('https://karpverse.net/stars3.gif');
  background-attachment: fixed;
  background-size:initial;
  padding: 20px;
  margin: 10px;
  /* background-color: darkblue; */
  border-radius: 5px;
  width: 90%;
}

#karp-bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: mediumblue;
  padding: 10px;
  font-size: medium;
}

.top-box {
  display: flex;
  flex-direction: column;
  border-style: dotted;
  border-width: 2px;
  border-color: yellow;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(15, 48, 240);
  padding: 5px;
  width: 80%;
  opacity: 1;
}

.sub-box {
  display: flex;
  flex-direction: row;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  border-style: groove;
  border-color: royalblue;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(15, 48, 240);
  padding: 10px;
  margin: 10px;;
  opacity: 1;
}

.sub-box-two {
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  border-style: groove;
  border-color: royalblue;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(15, 48, 240);
  padding: 10px;
  margin: 10px;;
  opacity: 1;
}

/* the weird karp elememt photos live here  */
.hero-box {
  /* background-color: rgb(34, 240, 15); */
  background-image: url('https://karpverse.net/photo_beach_1.gif');
  background-attachment: fixed;
  background-size: cover;
  opacity: 1;
  border-radius: 50%;
  border-style: none;
  border-width: 2px;
  border-color: blue;
}

.hero_image {
  height: 100px;
  width: 200px;
  border-radius: 5%;
  border-style: solid;
  border-width: 1px;
  border-color: orange;
  margin: 5px;
}

#karp-elements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 50px;
  background-image: url('https://karpverse.net/galaxy1.gif');
  background-attachment: fixed;
  background-size: inherit;
  /* background-color: rgb(171, 103, 0); */
  border-style: groove;
  border-color: darkgray;
  border-width: 5px;
  border-radius: 5px;
  margin: 100px;
}

.flex-centre-class {
  display: flex;
  
}

#banner-image {
  padding-top: 20px;
}

#karp-chat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(83, 194, 194);
  color: blue;
  padding: 10px;
  border-style: groove;
  border-width: 5px;
  border-color: azure; 
  border-radius: 5px;
  margin: 100px;
}

.chat-box {
  opacity: 1;
}

#kafe-karp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('https://karpverse.net/photo_beach_1.gif');
  background-attachment: fixed;
  background-size: contain;
  padding: 10px;
  margin: 100px;
}

#pixl-fish {
  height: 32px;
  width: 52px;
  padding-left: 10px;
  padding-top: 20px;
}

.margin-100 {
  margin: 100px;
}

.hero_div {
  font-size: 15px;
}

.kafe-divs {
  padding: 10px;
  margin: 10px;
  color:rgb(4, 0, 255);
  background-color: rgb(86, 144, 215);  
  border-radius: 10px;
  border-style: groove;
  border-width: 2px;
  border-color: rgb(102, 207, 102);
}

#friends-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: blue;
  border: 2px solid greenyellow;
  padding: 5px;
}

#music-list {
  /* font-size: large; */
  color: #ff7200;
  background-color: #010cb3;
  padding: 5px;
  border-color: #00d8ff;
  border-width: 1.5px;
  border-style: groove;
}

#hit-counter {
  margin: 5px;
}

.appendix {
  font-size: 10px;
  color: rgb(0, 255, 50);
}

.web-button {
  width: 88px;
  height: 31px;
}

#phone-message {
  display: none;
}


/* MEDIA QUERY MEDIA QUERY */

@media (max-width: 600px) {

.main-section {
  display: none;
  }

#main-banner {
  display: none;
  }

#master-container {
  display: none;
}

#phone-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: blue;
  background-color: aquamarine;
  padding: 10px;
  margin: 20px;
  }

}