/* Stylesheet based on one made by EDDRAMEN! */
body {
  background: rgb(142,192,124);
  background: linear-gradient(90deg, rgba(142,192,124,1) 15%, rgba(40,40,40,1) 85%);
  /* background: linear-gradient(90deg, rgba(211,134,155,1) 15%, rgba(40,40,40,1) 85%); */
  background-size: cover;
  background-attachment: fixed;
  background-position:center;
  font-family: "VT-100", fixedsys, System, monospace;
  font-size: 13px;
  color: #ebdbb2;
}

center {
  text-align: center;
}

a {
  color: #ebdbb2;
}

/*All sidebars go in here.*/  
.sidebar-group {
  position: fixed;
  top: 0;
  margin-top: 25px;
}

/*Code shared by all window-style boxes. To see what different specific sidebar classes look like, check the demo page.*/
.sidebar, .mini-sidebar, .wide-sidebar, .box, .tallbox {
  background: #282828;
  border-radius: 5px;
  border: 1px solid #8EC07C;
  box-shadow: 2px 2px #282828;
}

/*Prevent image overflow.*/
.sidebar img, .mini-sidebar img, .wide-sidebar img, .box img, .tallbox img, .sidebar video, .mini-sidebar video, .wide-sidebar video, .box video, .tallbox video {
  max-width: 100%;
  height:auto; /*Prevent squishing*/
}

.sidebar, .sidebar-box {
  display: inline-block;
  vertical-align: top;
  width: 160px;
}

/*Container for vertical stacks of multiple mini-sidebars*/
.sidebar-box {
  margin-left: 10px;
}

.sidebar {
  width: 160px;
  margin-left: 25px;
}

.mini-sidebar {
  margin-bottom: 25px;
}

.wide-sidebar {
  margin-left: 25px;
  margin-top: 25px;
  width: 340px;
  min-height: 150px;
}

/*Inside/main text of window boxes.*/
.inner {
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 0px;
}

/*The title bar at the top of window boxes.*/
.title-bar, .box-title-bar {
  background: #8ec07c
  color: white;
  font-weight: bold;
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
}

/*The title bar of boxes has slightly more padding, since there's more room to space text.*/
.box-title-bar {
  padding: 7px;
  padding-top: 5px;
  padding-bottom: 5px;
}

/*For the symbol in the top right corner.*/
.right {
  float: right;
  margin-right: 5px;
  font-family: "Arial", sans-serif;
  line-height: 12px;
}

/*Round circular image.*/
.icon {
  border: #80aa6f solid 2px;
  border-radius: 50%;
}

/*Main body text boxes.*/
.box, .tallbox {
  margin-top: 25px;
  margin-left: 400px;
  width: 455px;
  margin-bottom: 25px;
}

.tallbox {
  height:500px;
}

.iframe-container {
  width: 50%;
  height: 100%;
}

iframe {
  width: 100%;
  height: 498px; /* #TODO figure why 100% didnt work lol */
  border: none;
}

/*this part is a joke. no need to use it.*/
.big-quote {
  font-size: 32px;
  color: #ebdbb2;
  letter-spacing: 6px;
  word-spacing: 2px;
  font-family: "Garamond", "Bookman", serif;
  position: fixed;
  margin-left: 1050px;
  margin-top: 300px;
  top: 0;
  width: 300px;
}

wide {
  letter-spacing: 16px;
}

midwide {
  letter-spacing: 3px;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    background: linear-gradient(180deg, rgba(142,192,124,1) 15%, rgba(40,40,40,1) 85%);
  }

  .sidebar-group, .box, .tallbox, .wide-sidebar {
    position: static;
    width: 90%;
    margin: 10px auto;
    display: block;
  }

  .sidebar, .wide-sidebar {
    width: 100%;
    margin-left: 0;
  }

  .sidebar-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 10px auto;
    margin-left: 0;
  }

  .mini-sidebar {
    width: 48%; /* Adjust width to fit side by side */
  }

  .tallbox {
    height: auto;
  }

  .big-quote {
    font-size: 24px;
    text-align: center;
    margin: 20px auto;
    position: static;
    width: 90%;
  }

  iframe {
    width: 100%;
    height: 300px;
  }
}

