html {
  scroll-behavior: smooth;
}
body {
  background: #ffb0a3 url("/img/cherrie.gif"); /*Replace with your own background*/
	background-size: cover;
	background-attachment: fixed;
  background-position:center;
	font-family: "VT-100", fixedsys, System, monospace;
	font-size: 12pt;
  /*min-height: 100vh;*/
  margin: 0;
  }


/*an attempt on making this grid based instead

.body-grid {
  display: grid;
  
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
 } */
  
.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  }
  
a {
  color: #46425e;

  }

.light-link {
  color: #ffeecc;
}  

a:hover {
  color: #ff6973;
}

.caption {
  margin-top: 0;
  font-size: 10pt;
  font-style: italic;
}

/*making a unordered list style change here, need to figure out how to be able to choose what style I want for different locations... or a different solution.*/
ul {
  list-style-position: inside;
  padding-left: 0;
}
ul.links {
  list-style-position: outside;
  padding-left: 15px;
  line-height: 2.5;
  list-style-type: none;
  
}

ul.links li img {
  max-height: 2em;
  max-width: 2em;
  vertical-align: middle;
  margin-right: 1em;
}
/*All sidebars go in here.*/  
.sidebar-group {
  position: fixed;
  top: 0;
  margin-top: 25px;
  width: 33.33%;
  max-width: 550px;
  }
  
/*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 {
  background: #ffeecc;
  border-radius: 5px;
  border: 1px solid #46425e;
  box-shadow: 2px 2px #ff6973;
  }
  
/*Prevent image overflow.*/
.sidebar img, .mini-sidebar img, .wide-sidebar img, .box img {
  max-width: 100%;
  height:auto; /*Prevent squishing*/
  }
  
.sidebar, .sidebar-box {
  display: inline-block;
  vertical-align: top;
  width: 43.75%;
  /*width: 160px;*/
  }
  
/*Container for vertical stacks of multiple mini-sidebars
.sidebar-box {
  margin: 0 5% 0 0;
  }*/
  
.sidebar {
  margin-left: 5%;
  margin-bottom: 2.5%;
  }
  
.mini-sidebar {
  margin-bottom: 10px;

  }
  
.wide-sidebar {
  margin: 0 5% 2.5% 5%;
  width: 90%;
  }
  
/*Inside/main text of window boxes.*/
.inner, .inner-grid {
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 0px;
  color: #46425e;
  }

/*The title bar at the top of window boxes.*/
.title-bar, .box-title-bar {
  background: #15788c;
  color: #ffeecc;
  font-weight: bold;
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  }
  
/*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: #46425e solid 2px;
  border-radius: 50%;
  }

/*to make all large boxes sit in same div*/
.content {
  margin: 25px auto 25px auto;
  width: 33.33%;
}

/*Main body text boxes.*/
.box {
  margin-top: 25px;
 /* margin-left: 400px;
  width: 500px;
  margin-bottom: 25px;
  NOTE: properties moved to content*/
  }
  
  
  
/*this part is a joke. no need to use it.
.big-quote {
  font-size: 32px;
  color: #46425e;
  letter-spacing: 6px;
  word-spacing: 2px;
  font-family: "Garamond", "Bookman", serif;
  position: fixed;
  margin-left: 1050px;
  margin-top: 300px;
  top: 0;
  width: 2fr
  width: 300px;
  }
  
wide {
  letter-spacing: 16px;
  }
  
midwide {
  letter-spacing: 3px;
  }*/


/*other color scheme for boxes*/
.boxv2 {
  background: #15788c;
}
.boxv2-title-bar {
  background: #46425e;

}
.innerv2 {
  color: #ffeecc;

}


/*attempt to make columns for text in footer*/
.item1 {grid-area: footer-text;}
.item2 {grid-area: footer-logo;
text-align: right;
}
.item3 {
  width: 100%;
  height: 100%;
  grid-area: footer-links;
  text-align: center;
}

/*social media icons*/
.item3 img, .item3 a {
  max-height: 25px !important;
  max-width: 25px !important;
  margin: 8px;
}

.inner-grid {
  display: grid;
  grid:
    'footer-text footer-logo'
    'footer-links footer-links';
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

/*
.inner-grid div {
  text-align: center;
}

.botleft {
  text-align: left;
}
.botright {
  text-align: right;
  height: 100%;
}
*/

.table, th, td {
  border: 1px solid #ff6973;
  text-align: center;
  padding: 5px;
}
a.button {
  background-color: #00b9be;
  border: 1px solid #46425e;
  border-radius: 5px;
  color: #46425e;
  margin-top: 1em;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  font-size: 12pt;
  text-decoration: none;
}
a.button:hover {
  color: #ffeecc;
  background-color: #15788c;
}
a.button:active {
  background-color: #ff6973;
}

a.scroll-up {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: #00b9be;
  border: 1px solid #46425e;
  border-radius: 5px;
  box-shadow: 2px 2px #46425e;
  color: #46425e;
  margin-top: 1em;
  padding: 10px 20px;
  text-align: center;
}
a.scroll-up:hover {
  color: #ffeecc;
  background-color: #15788c;
}

  /*taken from imaginings css and duct taped together to fit this*/
  @media screen and (max-width:1260px) {
    .content {
      min-width: 450px;
      margin: 25px 25% 25px auto;
    }
    .sidebar-group {
      position: absolute;
    }
  }
  @media screen and (max-width: 1100px) {
    .content {
      margin: 25px 2.5% 5% auto;
      width: 50%;
      min-width: 294px;
    }
    .sidebar-group {
      position: absolute;
      height: auto;
      width: 45%;
    }
    .sidebar, .sidebar-box {
      width: 90%
    }
    .sidebar-box {
      margin: 0 5% 0 5%;
    }
    a.scroll-up {
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .sidebar-group {
      position: relative;
      height: auto;
      width: 100%;
      }
      .sidebar, .sidebar-box {
        width: 90%;
      }
      .sidebar-box {
        margin: 0 5% 0 5%;
      }
    .content {
      width: 90%;
      margin: 0 5% 5% 5%;  
      }
    .mini-sidebar {
      margin-bottom: 10px;
    
      }
    .box {
      margin-top: 15px;
    }
    a.scroll-up {
      display: block;
    }
  }