/* Idea for this one:
Basically everything is flex. To make it responsive switch direction from flex row to flex column
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;1,100;1,300;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@400;700&display=swap");
body.darkmode {
  filter: invert(1) hue-rotate(180deg);
}

@keyframes scaleup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.26);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleupless {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.linkbox a i:hover {
  cursor: pointer;
  animation: scaleup 1.2s ease 1 forwards;
}

/* for about.html */
.icons a:hover {
  cursor: pointer;
  animation: scaleupless 1.2s ease 1 forwards;
}

.substackcontainer a .bi-substack:hover {
  animation: scaleupless 1.2s ease 1 forwards;
  /* remove it for now: */
}

.copyanddownload i:hover {
  cursor: pointer;
  animation: scaleupless 1.2s ease 1 forwards;
}

.fa-linkedin:hover {
  color: #0e6899 !important;
}

.icons a .bi-substack:hover {
  fill: #f36822;
}

/* add animations for GitHub and LinkedIn icons later as well */
@keyframes scaleandspin {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.35) rotate(360deg);
  }
  53% {
    transform: scale(1.35) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(720deg);
  }
}
footer #smalllogo:hover {
  cursor: pointer;
  animation: scaleandspin 2.6s ease 1 forwards;
}

@keyframes shiftleft {
  0% {
    transform: translateX(0px);
    transform: scale(1);
  }
  25% {
    transform: translateX(50px) scale(1.3);
    color: lightskyblue;
  }
  /* 
  40% {
    transform: translateX(25px);
    color: lightskyblue;
  } */
  50% {
    transform: translateX(0px);
    color: rgb(77, 158, 208);
  }
  /*   
  60% {
    transform: translateX(-25px);
    color: lightskyblue;
  } */
  /* 
  70% {
    transform: translateX(-50px);
    color: lightskyblue;
  } */
  75% {
    transform: translateX(-50px);
    color: lightskyblue;
    background-color: aquamarine;
  }
  /* 
  80% {
    transform: translateX(-25px);
    color: lightskyblue;
  }

  90% {
    transform: translateX(-10px);
    color: lightskyblue;
  } */
  100% {
    transform: translateX(0px) scale(1);
  }
}
/* I should also add spans around each word so I can animate columns as well.  */
.tableanimationforwards {
  /* custom curve */
  /* get this two seconds value in javascript */
  animation: shiftleft 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

@keyframes updownog {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1);
    background-color: rgb(182, 227, 255);
    font-size: 20px;
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.updownblue {
  animation: updownog 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

@keyframes updownred {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1);
    background-color: rgb(251, 241, 58);
    font-size: 20px;
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.updownred {
  animation: updownred 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

@keyframes updown_ut {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1);
    background-color: rgba(243, 105, 50, 0.71);
    font-size: 20px;
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.updown_ut {
  animation: updown_ut 2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
  animation-delay: calc(var(--order) * 300ms);
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}
.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Idea for this one:
Basically everything is flex. To make it responsive switch direction from flex row to flex column
*/
footer {
  height: 300px;
  width: 100%;
  background-color: rgba(0, 24, 75, 0.4549019608);
  color: rgb(255, 255, 255);
  padding: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  -moz-column-gap: 20%;
       column-gap: 20%;
  font-family: Helvetica, sans-serif;
  position: relative;
  overflow: visible;
}
footer .footerleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 15px;
}
footer .footerleft .links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
footer .footerright #smalllogo {
  /* animation has been added in animations.css  */
  width: 85px;
  height: 85px;
  border-radius: 10px;
  border: 3px solid #081a75;
}
footer .footerright #statement {
  font-family: "Barlow", sans-serif;
  font-size: 25px;
  margin: 0;
  margin-top: 19px;
  font-weight: 700;
}
footer a {
  color: white;
  font-family: Helvetica, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  footer a {
    font-size: 19px;
  }
}
footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}

#animatebutton {
  border: 1px solid rgb(35, 44, 116);
  color: white;
  background-color: #153f66;
  width: 75px;
  padding: 0px 6px;
  height: 40px;
  border-radius: 25px;
  margin-right: 10px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.5s;
}
#animatebutton:hover {
  cursor: pointer;
  background-color: #fdfbfa;
  color: #153f66;
  border: 3px solid rgb(15, 29, 89);
}

:root {
  --secondarynavy: #153f66;
  --lighterblue: #284dbc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* crazy filters to apply */
  /* filter: invert(100%); */
  /* filter: grayscale(50%); */
  filter: contrast(110%);
  /* filter: blur(3px); */
  filter: saturate(110%);
}

/* 

This is all nav bar stuff:*/
/* end nav bar stuff */
.sitecontainer#about {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* 
  Above mainsite and its children
  */
  /* topnav beginning */
  /* 

  still in top nav, but now the homeandabout section

  */
  /* now outside of top nav */
  /* now done with above main site... */
  /* mainsite will be the name, plus some of the files, plus some images. But there can be stuff below it in, Since sitecontainer is flex column  */
  /* 
  Begin left content stuff
  */
  /* this controls this h3 elements in files container */
  /* this changes the styling on the names of the file like "Sample Semester PDF */
  /* add animations to these mf's */
  /* end left content stuff */
  /* 





  */
  /* Right content stuff */
  /* 




  */
  /* end under main site */
  /* beginning of all the media quieries */
  /* 

  Mobile Screens

  */
  /* even smaller screensizes here */

}
.sitecontainer#about .abovemainsite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 500px;
}
.sitecontainer#about .topnav {
  /* change this color to see it and make changes */
  background-color: #eee;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* keep this */
  filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
}
.sitecontainer#about .biglogobox {
  height: 100px;
  overflow: hidden; /* optional: clips the image if it's too big */
}
.sitecontainer#about .biglogo {
  /* height the same as topnav here, 100px */
  height: 100%;
  width: auto;
}
.sitecontainer#about .homeandabout {
  background-color: #153f66;
  width: 25%;
  height: 100px;
  display: flex;
  flex-direction: row;
  /* this jsut centers the ul */
  align-items: center;
  justify-content: center;
}
.sitecontainer#about .homeandabout ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}
.sitecontainer#about .homeandabout ul li {
  /* make them big so you can hover */
  /* each one takes up 1/3 width */
  flex: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.sitecontainer#about .homeandabout li:hover {
  background-color: #284dbc;
}
.sitecontainer#about .homeandabout ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  /* nice font when bolded */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* make the whole li box clickable */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sitecontainer#about .headingbox {
  /* border: 4px solid black; */
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#about #headingtitle {
  font-size: 45px;
  color: #060212;
  margin: 0;
}
.sitecontainer#about .mainsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 35px;
  width: 100%;
  padding: 40px 30px;
  flex: 1 1 500px;
  border-top: 10px solid #153f66;
  border-bottom: 10px solid #153f66;
}
.sitecontainer#about .aboutbox {
  width: 90%;
  border: 5px black dashed;
  border-radius: 26px;
  padding: 30px 35px;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
}
.sitecontainer#about .about-paragraph a {
  text-decoration: none;
  color: #153f66;
}
.sitecontainer#about .about-paragraph a:hover {
  text-decoration: none;
  color: #153f66;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.sitecontainer#about .infobox {
  width: 90%;
  border: 5px black dashed;
  border-radius: 26px;
  padding: 30px 35px;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
}
.sitecontainer#about .infobox a {
  text-decoration: none;
  color: #153f66;
}
.sitecontainer#about .infobox a:hover {
  text-decoration: none;
  color: #153f66;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.sitecontainer#about .substackcontainer {
  font-weight: normal;
  margin-top: 50px;
  border: 5px solid var(--secondarynavy);
  border-radius: 26px;
  width: 90%;
  padding: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.sitecontainer#about .substackcontainer p {
  width: 80%;
}
.sitecontainer#about .substackcontainer p a {
  display: inline;
}
@media screen and (max-width: 500px) {
  .sitecontainer#about .substackcontainer {
    flex-direction: column;
  }
}
.sitecontainer#about .substackcontainer a {
  text-decoration: none;
  color: #153f66;
  width: 10%;
}
.sitecontainer#about .substackcontainer a:hover {
  text-decoration: none;
  color: #153f66;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.sitecontainer#about .substackcontainer a .bi-substack {
  font-size: 49px;
  width: 45px;
  height: 45px;
  fill: #ff7731; /* for SVG */
  /* remove it for now: */
}
.sitecontainer#about #disclaimer {
  margin-top: 200px;
  font-style: italic;
  font-weight: normal;
}
.sitecontainer#about .platformscontainer {
  width: 90%;
  font-family: Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.sitecontainer#about .platformscontainer p {
  margin: 6px 0px;
}
.sitecontainer#about .platformsbox {
  border-bottom: 5px solid #153f66;
  border-top: 1.3px solid #eee;
  width: 30%;
  min-width: 190px;
  padding: 10px 30px;
  border-radius: 26px;
  font-family: Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 10px;
}
.sitecontainer#about .icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 25px;
  column-gap: 25px;
  /* this was that icon stuff I was trying to find */
  width: 100%;
  /* for now */
}
.sitecontainer#about .icons a .fa-linkedin {
  font-size: 36px;
  color: #0072b1;
  margin-bottom: 9px;
}
.sitecontainer#about .icons a .bi-substack {
  font-size: 34px;
  width: 30px;
  height: 30px;
  fill: #ff7731; /* for SVG */
  /* remove it for now: */
}
.sitecontainer#about .filescontainer {
  border: 4px dashed rgb(16, 11, 82);
  border-radius: 26px;
  width: 92%;
  padding: 20px 29px;
}
.sitecontainer#about .filescontainer h3 {
  color: #284dbc;
}
.sitecontainer#about .filescontainer ul {
  list-style-type: none; /* Removes bullets */
  /* indent */
  padding-left: 30px;
}
.sitecontainer#about .linkbox {
  display: flex;
  flex-direction: row;
  /* make the download text all even */
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.sitecontainer#about .linkbox p:first-of-type {
  margin-top: 10px;
  font-weight: bold;
  max-width: 137px;
}
.sitecontainer#about .linkbox a i {
  color: rgb(21, 21, 69);
}
.sitecontainer#about .rightcontent {
  flex: 60%;
  background-color: rgb(232, 80, 56);
  padding: 0px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
}
.sitecontainer#about .degreelistheaderbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
}
.sitecontainer#about .degreelistbox {
  border: 4px solid rgb(224, 233, 244);
  border-radius: 26px;
  width: calc(100% - 80px);
  padding: 20px 10px 20px 40px;
}
.sitecontainer#about .degreelistbox ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  /* control paddig in the degreelistbox instead, its easier */
  padding: 0;
}
.sitecontainer#about .degreelink {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-weight: bold;
}
.sitecontainer#about .degreelink a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.sitecontainer#about .linksvg {
  filter: invert(100%) brightness(200%);
  width: 20px;
  height: auto;
  margin-top: 6px;
}
.sitecontainer#about .undermainsite {
  background-color: rgb(255, 255, 255);
  width: 100%;
  /* this is for now essentially footer top margin */
  height: 0px;
  display: flex;
  flex-direction: row;
}
.sitecontainer#about .visuals {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#about .visuals #displayeditemname {
  color: blue;
}
.sitecontainer#about .visuals .displayedpdf {
  border-radius: 26px;
}
@media screen and (min-width: 700px) and (max-width: 1272px) {
  .sitecontainer#about #headingtitle {
    font-size: 45px;
    color: #060212;
  }
}
@media screen and (max-width: 1135px) {
  .sitecontainer#about {
    /* theres already padding here from the originally declared style */
    /* add some right padding */
  }
  .sitecontainer#about .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    height: 260px;
  }
  .sitecontainer#about .headingbox {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    height: 150px;
    width: 100%;
    padding-left: 20px;
  }
  .sitecontainer#about .topnav {
    background-color: #eee;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* top nav currently 250px */
  }
  .sitecontainer#about .breadcrumbs {
    background-color: #eee;
    flex-basis: auto;
    width: 69%;
    height: 100px;
    /* the breadcrumbs content will possibly wrap */
  }
  .sitecontainer#about .breadcrumbs ul {
    padding-left: 30px;
    padding-right: 10px;
  }
  .sitecontainer#about .homeandabout {
    width: 30%;
  }
}
@media screen and (max-width: 700px) {
  .sitecontainer#about {
    /* 



    this one here is pretty important */
  }
  .sitecontainer#about .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 352px;
  }
  .sitecontainer#about .headingbox {
    height: 185px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#about #headingtitle {
    font-size: 45px;
    color: #060212;
  }
  .sitecontainer#about .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 177px;
    /* removed the fixed navbar */
    position: static;
    filter: none;
  }
  .sitecontainer#about .homeandabout {
    /* bring it to the top */
    order: 1;
    height: 65px;
    width: 100%;
    filter: drop-shadow(4px 1px 3px rgb(67, 66, 66));
  }
  .sitecontainer#about .biglogobox {
    background-color: #eee;
    width: 100%;
    flex: none;
    height: 110px;
    order: 2;
    border-bottom: 2px solid #eee;
    /*  */
  }
  .sitecontainer#about .biglogo {
    height: 100%;
    width: auto;
  }
  .sitecontainer#about .mainsite {
    flex-direction: column;
  }
  .sitecontainer#about .platformsbox {
    width: 40%;
    min-width: 200px;
    padding: 10px 30px;
    border-radius: 26px;
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
  }
  .sitecontainer#about .icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    /* this was that icon stuff I was trying to find */
    width: 100%;
  }
  .sitecontainer#about .icons a .fa-linkedin {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #0072b1;
    margin-bottom: 7px;
  }
  .sitecontainer#about .icons a .bi-substack {
    font-size: 10px;
    width: 27px;
    height: 27px;
    fill: #ff7731; /* for SVG */
  }
}
@media screen and (max-width: 550px) {
  .sitecontainer#about .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 360px;
  }
  .sitecontainer#about .headingbox {
    height: 185px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#about #headingtitle {
    font-size: 45px;
    color: #060212;
  }
  .sitecontainer#about .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 185px;
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#about .homeandabout {
    /* bring it to the top */
    /* order: 1; */
    height: 65px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
    filter: drop-shadow(4px 1px 3px rgb(67, 66, 66));
  }
  .sitecontainer#about .biglogobox {
    background-color: #eee;
    width: 100%;
    flex: none;
    height: 110px;
    order: 2;
    border-bottom: 2px solid #eee;
    /*  */
  }
  .sitecontainer#about .biglogo {
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 450px) {
  .sitecontainer#about .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 360px;
  }
  .sitecontainer#about .headingbox {
    height: 185px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#about #headingtitle {
    font-size: 45px;
    color: #060212;
  }
  .sitecontainer#about .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 175px;
    /* big logo box is 110 plus homeandabout is 175 */
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#about .homeandabout {
    /* bring it to the top */
    /* order: 1; */
    height: 65px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
    filter: drop-shadow(4px 1px 3px rgb(67, 66, 66));
  }
}

/* Idea for this one:
Basically everything is flex. To make it responsive switch direction from flex row to flex column
*/
:root {
  --secondarynavy: #153f66;
  --lighterblue: #284dbc;
}

.abovemainsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  height: 600px !important;
}
.abovemainsite .topnav {
  /* change this color to see it and make changes */
  background-color: #dce2e6;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* keep this */
  filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
}
.abovemainsite .hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 3px solid red !important;
  width: 100%;
  height: 100%;
}
.abovemainsite .hero .lefthero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  padding: 40px;
}
.abovemainsite .hero .lefthero h1.heading {
  font-size: 80px;
  color: navy;
  font-family: "Barlow", Serif;
  font-weight: 600;
}
.abovemainsite .hero .lefthero p.subheading {
  font-family: Hind Vadodara, sans-serif;
  color: #887d7d;
}
.abovemainsite .hero .lefthero button.cta {
  width: 100px;
  height: 70px;
  color: #fff;
  background-color: blue;
}
.abovemainsite .hero .righthero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 3px solid black;
  border-radius: 15px;
  background-color: var(--lighterblue);
  height: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  justify-items: center;
  align-content: center;
  padding: 24px;
}
.abovemainsite .hero .righthero img {
  width: 100px;
  height: auto;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.abovemainsite .hero .righthero img:hover {
  transform: translate(-6px, -6px);
  box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.25);
}
.abovemainsite .hero .righthero img#towericon {
  width: 150px;
}
.abovemainsite .hero .righthero img:nth-child(4) {
  grid-column: 2;
}
.abovemainsite .hero .righthero img:nth-child(5) {
  grid-column: 3;
}
@media screen and (max-width: 1135px) {
  .abovemainsite .abovemainsite {
    display: flex;
    flex-direction: column;
    height: 800px;
  }
  .abovemainsite .abovemainsite .topnav {
    background-color: #dce2e6;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.mainsite {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 55px;
       column-gap: 55px;
  width: 100%;
  padding: 50px 30px;
  flex: 1 1 600px;
  border-top: 10px solid #153f66;
}
.mainsite .sidebar {
  border: 3px solid black;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  justify-content: flex-start;
  padding: 30px 10px;
  width: 30%;
  height: 500px;
}
.mainsite .sidebar h3#sidebartitle {
  width: 100%;
  border-bottom: 5px solid #000;
  margin-bottom: 4px;
  font-weight: bold;
  margin-top: 0;
}
.mainsite .sidebar p {
  border-bottom: 3px solid #eee;
  margin-bottom: 4px;
}
.mainsite .sidebar .middlenav {
  width: 100%;
}
.mainsite .sidebar .middlenav .home_random_stats {
  width: 100%;
  height: 300px;
  background-color: transparent;
}
.mainsite .sidebar .middlenav .home_random_stats ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  align-items: center;
  row-gap: 20px;
  /* since doing space evenly, remove gap */
  justify-content: flex-start;
  list-style-type: none;
  padding-left: 0;
}
.mainsite .sidebar .middlenav .home_random_stats ul li {
  /* make them big so you can hover */
  width: 80%;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  background-color: #153f66;
  border-radius: 35px;
  padding: 20px;
}
.mainsite .sidebar .middlenav .home_random_stats ul li:hover {
  background-color: #284dbc;
  cursor: pointer;
}
.mainsite .sidebar .middlenav .home_random_stats ul li a {
  text-decoration: none;
  color: white;
  font-size: 19px;
  font-weight: bold;
  /* nice font when bolded */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* make the whole li box clickable */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.3s;
}
.mainsite .sidebar .middlenav .home_random_stats ul li#randompagebutton {
  border: 3px solid rgb(35, 44, 116);
}
.mainsite .sidebar .middlenav .home_random_stats ul li#randompagebutton:hover {
  background-color: #fdfbfa;
  color: #153f66;
  border: 5px solid rgb(15, 29, 89);
  border-radius: 25px;
}

.borderdiv {
  margin-top: 100px;
  border-top: 4px solid #eee;
  margin-bottom: 50px;
  width: 90%;
  height: 0;
}

.undermainsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  /* this is for now essentially footer top margin */
  height: auto;
}
.undermainsite .quickstats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 90%;
}
.undermainsite #statslink {
  margin: 100px 0px;
  width: 290px;
  background-color: rgb(47, 47, 159);
  color: white;
  font-weight: bold;
  font-size: 30px;
  border-radius: 39px;
  height: 120px;
}
.undermainsite #statslink a {
  text-decoration: none;
  color: white;
}

.sitecontainer#index .universityul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  gap: 26px;
  border: 4px solid green;
  border-radius: 26px;
  height: 100%;
  width: 100%;
  justify-content: flex-start;
  padding: 10px;
}
.sitecontainer#index .universityul a {
  width: 100%;
  height: 60px;
  text-decoration: none;
  transition: transform 0.5s ease;
}
.sitecontainer#index .universityul a:hover {
  cursor: pointer;
  transform: translateY(10px);
}
.sitecontainer#index .universityul a li {
  font-weight: bold;
  text-decoration: none;
  color: rgb(3, 1, 49);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 20px;
  border: 3px solid black;
  border-radius: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* 

This is all nav bar stuff:*/
/* end nav bar stuff */
.sitecontainer#index {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* 
  Above mainsite and its children
  */
  /* 




  /* now outside o

  /* now done with above main site... */
  /* mainsite will be the name, plus some of the files, plus some images. But there can be stuff below it in, Since sitecontainer is flex column  */
  /* index code */
  /* this is the ul */
  /* 1/3 width for each column. Use media quieries to change width */
  /* 

  Begin left content stuff
  */
  /* end left content stuff */
  /* 





  /* 




  /* end under main site */
  /* beginning of all the media quieries */
  /* 

  Mobile Screens

  */
  /* even smaller screensizes here */
}
@media screen and (max-width: 1135px) {
  .sitecontainer#index {
    /* for the home_random_stats stuff */
    /* theres already padding here from the originally declared style */
  }
  .sitecontainer#index .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    height: 270px;
  }
  .sitecontainer#index .headingbox {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    height: 150px;
    width: 100%;
    padding-left: 20px;
  }
  .sitecontainer#index .topnav {
    background-color: #dce2e6;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* top nav currently 250px */
  }
  .sitecontainer#index .middlenav {
    width: 90%;
  }
  .sitecontainer#index .home_random_stats ul {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media screen and (max-width: 700px) {
  .sitecontainer#index {
    /* 



    this one here is pretty important */
  }
  .sitecontainer#index .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    /* add the 2px for the border bottom */
    height: 272px;
  }
  .sitecontainer#index .topnav {
    background-color: #dce2e6;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* keep this */
    filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
  }
  .sitecontainer#index .middlenav {
    width: 90%;
    /* 300 px plus gap of 30 for 3 */
    height: 390px;
  }
  .sitecontainer#index .home_random_stats {
    /* bring it to the top */
    width: 100%;
  }
  .sitecontainer#index .home_random_stats ul {
    display: flex;
    flex-direction: column;
    height: 405px;
    row-gap: 35px;
  }
  .sitecontainer#index .home_random_stats ul li {
    width: 60%;
    height: 25%;
  }
  .sitecontainer#index .biglogobox {
    background-color: #fff;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /*  */
  }
  .sitecontainer#index .biglogo {
    height: 65%;
    width: auto;
  }
  .sitecontainer#index .mainsite {
    flex-direction: column;
  }
  .sitecontainer#index .platformsbox {
    width: 40%;
    min-width: 200px;
    padding: 10px 30px;
    border-radius: 26px;
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
  }
  .sitecontainer#index .icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    /* this was that icon stuff I was trying to find */
    width: 100%;
  }
  .sitecontainer#index .icons a .fa-linkedin {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #0072b1;
    margin-bottom: 7px;
  }
  .sitecontainer#index .icons a .bi-substack {
    font-size: 10px;
    width: 27px;
    height: 27px;
    fill: #ff7731; /* for SVG */
  }
}
@media screen and (max-width: 550px) {
  .sitecontainer#index .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 220px;
  }
  .sitecontainer#index .topnav {
    background-color: #dce2e6;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* keep this */
    filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
  }
  .sitecontainer#index .biglogobox {
    width: 100%;
    /* keep in mind its still flex center */
    height: 160px;
    /*  */
  }
  .sitecontainer#index .biglogo {
    height: 70%;
    width: auto;
  }
  .sitecontainer#index .home_random_stats {
    /* bring it to the top */
    /* order: 1; */
    height: 65px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
  }
}
@media screen and (max-width: 450px) {
  .sitecontainer#index .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 220px;
  }
  .sitecontainer#index .biglogo {
    height: 65%;
    width: auto;
  }
  .sitecontainer#index .topnav {
    background-color: #dce2e6;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* keep this */
  }
  .sitecontainer#index .home_random_stats {
    height: 65px;
    width: 100%;
  }
}

/*  */
.sectioncontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 3px solid black;
  border-radius: 15px;
  width: 100%;
}
.sectioncontainer .minimainsite {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex: 1 1 350px;
  border-top: 10px solid #740d40;
  border-bottom: 10px solid #740d40;
}
.sectioncontainer .minimainsite .leftcontent {
  /* this affects the width */
  flex: 40%;
  background-color: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 25px;
}
.sectioncontainer .minimainsite .leftcontent .filescontainer {
  border: 4px dashed rgb(16, 11, 82);
  border-radius: 26px;
  width: 92%;
  padding: 20px 29px;
}
.sectioncontainer .minimainsite .leftcontent .filescontainer h3 {
  color: #284dbc;
}
.sectioncontainer .minimainsite .leftcontent .filescontainer ul {
  list-style-type: none; /* Removes bullets */
  /* indent */
  padding-left: 30px;
}
.sectioncontainer .minimainsite .leftcontent .filescontainer ul .linkbox {
  display: flex;
  flex-direction: row;
  /* make the download text all even */
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.sectioncontainer .minimainsite .leftcontent .filescontainer ul .linkbox p:first-of-type {
  margin-top: 10px;
  font-weight: bold;
  max-width: 137px;
}
.sectioncontainer .minimainsite .leftcontent .filescontainer ul .linkbox a i {
  color: rgb(21, 21, 69);
}
.sectioncontainer .minimainsite .rightcontent {
  flex: 60%;
  background-color: rgb(232, 80, 56);
  padding: 30px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

.statscontainer#dvstats {
  /* this is the top one */
  width: 100%;
  background-color: #ff7731;
  border-radius: 26px;
  padding: 30px 35px;
  font-family: Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  height: auto;
  min-height: 300px;
  /* now the longest and shortest courses */
}
.statscontainer#dvstats .statsbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 250px;
  height: 200px;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  color: white;
  border: 4px solid white;
  border-radius: 26px;
}
.statscontainer#dvstats .statsbox .statscontent {
  font-size: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40%;
  padding-top: 10px;
}
.statscontainer#dvstats .statsbox .statstitle {
  font-size: 20px;
  width: 100%;
  padding: 22px 10px 22px 22px;
}
.statscontainer#dvstats sup {
  font-size: 11px;
}
.statscontainer#dvstats #longestnamebox {
  width: 350px;
  height: 200px;
}
.statscontainer#dvstats #longestnamebox .statscontent {
  font-size: 22px;
  padding: 20px;
  padding-top: 35px;
}
.statscontainer#dvstats #longestnamebox .statstitle {
  margin-top: 5px;
  font-size: 20px;
}
.statscontainer#dvstats #shortestnamebox {
  width: 300px;
}
.statscontainer#dvstats #shortestnamebox .statscontent {
  font-size: 24px;
  padding: 20px;
  align-items: flex-start;
}
.statscontainer#dvstats #shortestnamebox .statstitle {
  font-size: 20px;
  padding: 20px;
  align-items: flex-start;
}
.statscontainer#dvstats #longestcoursebox {
  width: 350px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statscontainer#dvstats #longestcoursebox .statscontent {
  font-size: 20px;
  padding: 20px;
  padding-top: 35px;
}
.statscontainer#dvstats #longestcoursebox .statstitle {
  margin-top: 5px;
  font-size: 18px;
  width: 100%;
  padding: 25px 10px 22px 22px;
}
.statscontainer#dvstats #shortestcoursebox {
  width: 300px;
}
.statscontainer#dvstats #shortestcoursebox .statscontent {
  font-size: 22px;
  padding: 20px;
  align-items: flex-start;
}
.statscontainer#dvstats #shortestcoursebox .statstitle {
  font-size: 18px;
  padding: 20px;
  align-items: flex-start;
}

:root {
  --secondarynavy: #153f66;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
  /* crazy filters to apply */
  /* filter: invert(100%); */
  /* filter: grayscale(50%); */
  filter: contrast(110%);
  /* filter: blur(3px); */
  filter: saturate(110%);
}

/* 

This is all nav bar stuff:*/
/* end nav bar stuff */
.sitecontainer#dvstats {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* 
  Above mainsite and its children
  */
  /* topnav beginning */
  /* this is for the icon in the breadcrumbs */
  /* 

  still in top nav, but now the homeandabout section

  */
  /* now outside of top nav */
  /* now done with above main site... */
  /* mainsite will be the name, plus some of the files, plus some images. But there can be stuff below it in, Since sitecontainer is flex column  */
  /* end general stats styling, now specific for certain boxes */
  /*
  Begin left content stuff
  */
  /* this controls this h3 elements in files container */
  /* this changes the styling on the names of the file like "Sample Semester PDF */
  /* add animations to these mf's */
  /* end left content stuff */
  /* 





  */
  /* Right content stuff */
  /* 




  */
  /* begin .sheetjs div */
  /* style first row bold */
  /* add border radius to the whole table */
  /* change alignment */
  /* alternating bcg for lines */
  /* style Degreeview Logo */
  /* select the 2nd to last child */
  /* end under main site */
  /* beginning of all the media quieries */
  /* 

  Mobile Screens

  */
  /* even smaller screensizes here */
}
.sitecontainer#dvstats .abovemainsite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 250px;
}
.sitecontainer#dvstats .topnav {
  /* change this color to see it and make changes */
  background-color: #eee;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* keep this */
  filter: drop-shadow(4px 0px 2px rgb(67, 66, 66));
}
.sitecontainer#dvstats .biglogobox {
  height: 100%;
  overflow: hidden; /* optional: clips the image if it's too big */
}
.sitecontainer#dvstats .biglogo {
  /* height the same as topnav here, 100px */
  height: 100%;
  width: auto;
}
.sitecontainer#dvstats .breadcrumbs {
  background-color: #eee;
  width: 70%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.sitecontainer#dvstats .breadcrumbs ul {
  display: flex;
  flex-direction: row;
  padding-left: 30px;
  -moz-column-gap: 19px;
       column-gap: 19px;
  list-style-type: none;
  color: #081a75;
}
.sitecontainer#dvstats .breadcrumbs ul li a {
  text-decoration: none;
  color: #081a75;
  font-size: 16px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sitecontainer#dvstats .breadcrumbs ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 3px;
}
.sitecontainer#dvstats .breadcrumbs li#current {
  /* this is the current page the user is on */
  text-decoration: none;
  color: rgb(200, 74, 12);
  font-size: 16px;
  font-weight: bold;
}
.sitecontainer#dvstats .fa-chevron-right {
  vertical-align: middle; /* or baseline, or -2px tweak */
  font-size: 12px; /* adjust size */
  margin: 5px 0 0px 0; /* spacing */
  color: #081a75;
}
.sitecontainer#dvstats .homeandabout {
  background-color: #153f66;
  width: 25%;
  height: 100px;
  display: flex;
  flex-direction: row;
  /* this jsut centers the ul */
  align-items: center;
  justify-content: center;
}
.sitecontainer#dvstats .homeandabout ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}
.sitecontainer#dvstats .homeandabout ul li {
  /* make them big so you can hover */
  /* each one takes up 1/3 width */
  flex: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.sitecontainer#dvstats .homeandabout li:hover {
  background-color: #284dbc;
}
.sitecontainer#dvstats .homeandabout ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  /* nice font when bolded */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* make the whole li box clickable */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sitecontainer#dvstats .headingbox {
  /* border: 4px solid black; */
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#dvstats #headingtitle {
  font-size: 45px;
  color: #060212;
}
.sitecontainer#dvstats .mainsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 30px;
  flex: 1 1 500px;
  border-top: 10px solid #153f66;
  border-bottom: 10px solid #153f66;
  row-gap: 35px;
}
.sitecontainer#dvstats .footnotes {
  display: flex;
  width: 100%;
  /* border: 3px solid black; */
  align-items: center;
  justify-content: flex-end;
  margin-top: -32px;
  margin-bottom: -23px;
}
.sitecontainer#dvstats .rightfootnotes {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.sitecontainer#dvstats .minimainsite {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex: 1 1 350px;
  border-top: 10px solid #740d40;
  border-bottom: 10px solid #740d40;
}
.sitecontainer#dvstats .leftcontent {
  /* this affects the width */
  flex: 40%;
  background-color: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 25px;
}
.sitecontainer#dvstats .filescontainer {
  border: 4px dashed rgb(16, 11, 82);
  border-radius: 26px;
  width: 92%;
  padding: 20px 29px;
}
.sitecontainer#dvstats .linkbox {
  display: flex;
  flex-direction: row;
  /* make the download text all even */
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.sitecontainer#dvstats .rightcontent {
  flex: 60%;
  background-color: rgb(232, 80, 56);
  padding: 30px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
  /* just put some stats in this mf */
}
.sitecontainer#dvstats #degreecountpng {
  width: 90%;
  height: auto;
  border-radius: 26px;
  min-width: 300px;
}
.sitecontainer#dvstats .morestats {
  width: 100%;
  background-color: rgb(67, 153, 67);
  height: 550px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 70px;
       column-gap: 70px;
  border-radius: 26px;
  padding: 50px 10px;
}
.sitecontainer#dvstats .morestats img {
  width: 40%;
  height: auto;
  border-radius: 26px;
  min-width: 300px;
}
.sitecontainer#dvstats .renderedcsvdiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#dvstats #csvtablecontainer {
  width: 90%;
  border-radius: 26px;
  /* border: 5px solid #081a75; */
  min-height: 100px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smoother scroll on mobile */
}
.sitecontainer#dvstats #csvheading {
  margin: 30px;
  color: #284dbc;
  font-size: 23px;
}
.sitecontainer#dvstats #csvtablecontainer table {
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.sitecontainer#dvstats #csvtablecontainer table td,
.sitecontainer#dvstats #csvtablecontainer table th {
  border: 1px solid #ccc;
  padding: 15px 9px;
  min-height: 40px;
}
.sitecontainer#dvstats #csvtablecontainer table tr:first-child td {
  font-weight: bold;
  background-color: var(--secondarynavy);
  color: white;
  border: none;
  text-align: left;
  font-size: 20px;
  padding: 18px;
}
.sitecontainer#dvstats #csvtablecontainer table tr:first-child td:nth-of-type(1) {
  border-top-left-radius: 10px;
  padding-left: 15px;
}
.sitecontainer#dvstats #csvtablecontainer table tr:first-child td:nth-of-type(6) {
  border-top-right-radius: 10px;
  padding-right: 10px;
  /* color: #ff731f; */
}
.sitecontainer#dvstats #csvtablecontainer table tr:last-child td:nth-of-type(1) {
  border-bottom-left-radius: 10px;
}
.sitecontainer#dvstats #csvtablecontainer table tr:last-child td:nth-of-type(4) {
  border: none;
  border-bottom-right-radius: 10px;
  border: 1px solid #ccc;
  border-collapse: separate;
}
.sitecontainer#dvstats #csvtablecontainer table tr:nth-of-type(3) td {
  font-weight: bold;
}
.sitecontainer#dvstats td:nth-child(1),
.sitecontainer#dvstats th:nth-child(1) {
  text-align: left;
}
.sitecontainer#dvstats td:nth-child(2),
.sitecontainer#dvstats td:nth-child(3),
.sitecontainer#dvstats td:nth-child(4),
.sitecontainer#dvstats td:nth-child(5),
.sitecontainer#dvstats td:nth-child(6) {
  text-align: center;
}
.sitecontainer#dvstats tr:nth-child(even) {
  background-color: #f2f2f2;
}
.sitecontainer#dvstats #csvtablecontainer table tr:last-child td:first-child {
  font-weight: bold;
  color: #0c48a5;
  font-family: "Barlow";
  font-weight: 600;
  font-size: 30px;
}
.sitecontainer#dvstats #csvtablecontainer table tr:nth-last-of-type(2) {
  display: none;
}
.sitecontainer#dvstats #csvtablecontainer table tr:nth-of-type(2) {
  display: none;
}
.sitecontainer#dvstats #csvtablecontainer td.schooltd {
  border-bottom: #eb7d46 solid 3px;
  font-weight: bold;
}
.sitecontainer#dvstats .undermainsite {
  background-color: rgb(255, 255, 255);
  width: 100%;
  /* this is for now essentially footer top margin */
  height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sitecontainer#dvstats #returnbutton {
  width: 20%;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  background-color: #153f66;
  border-radius: 35px;
  padding: 20px;
  color: white;
}
.sitecontainer#dvstats #returnbutton a {
  text-decoration: none;
  color: white;
  font-size: 19px;
  font-weight: bold;
  /* nice font when bolded */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* make the whole li box clickable */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.3s;
}
.sitecontainer#dvstats #returnbutton:hover {
  cursor: pointer;
  background-color: #284dbc;
}
.sitecontainer#dvstats .visuals {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitecontainer#dvstats .visuals #displayeditemname {
  color: blue;
}
.sitecontainer#dvstats .visuals .displayedpdf {
  border-radius: 26px;
}
.sitecontainer#dvstats .barlowtest {
  font-family: "Barlow", sans-serif;
  font-size: 25px;
  margin: 0;
  font-weight: 600;
  color: black;
}
@media screen and (min-width: 700px) and (max-width: 1272px) {
  .sitecontainer#dvstats #headingtitle {
    font-size: 45px;
    color: #060212;
  }
}
@media screen and (max-width: 1135px) {
  .sitecontainer#dvstats .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    height: 250px;
  }
  .sitecontainer#dvstats .headingbox {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    height: 150px;
    width: 100%;
    padding-left: 20px;
  }
  .sitecontainer#dvstats .topnav {
    background-color: #eee;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* top nav currently 250px */
  }
  .sitecontainer#dvstats .homeandabout {
    width: 30%;
  }
  .sitecontainer#dvstats .minimainsite {
    flex-direction: column;
  }
  .sitecontainer#dvstats .morestats {
    flex-direction: column;
    gap: 70px;
    height: auto;
  }
  .sitecontainer#dvstats .morestats img {
    width: 87%;
    height: auto;
    border-radius: 26px;
    min-width: 300px;
  }
  .sitecontainer#dvstats #returnbutton {
    width: 40%;
  }
}
@media screen and (max-width: 700px) {
  .sitecontainer#dvstats {
    /* 



    this one here is pretty important */
  }
  .sitecontainer#dvstats .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 352px;
  }
  .sitecontainer#dvstats .headingbox {
    height: 185px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#dvstats #headingtitle {
    font-size: 45px;
    color: #060212;
  }
  .sitecontainer#dvstats .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 177px;
    /* removed the fixed navbar */
    position: static;
    filter: none;
  }
  .sitecontainer#dvstats .homeandabout {
    /* bring it to the top */
    order: 1;
    height: 65px;
    width: 100%;
    filter: drop-shadow(4px 1px 3px rgb(67, 66, 66));
  }
  .sitecontainer#dvstats .biglogobox {
    background-color: #eee;
    width: 100%;
    flex: none;
    height: 110px;
    order: 2;
    border-bottom: 2px solid #eee;
    /*  */
  }
  .sitecontainer#dvstats .biglogo {
    height: 100%;
    width: auto;
  }
  .sitecontainer#dvstats .mainsite {
    flex-direction: column;
  }
  .sitecontainer#dvstats .linkbox {
    display: flex;
    flex-direction: column;
    /* make the download text all even */
    justify-content: center;
    align-items: flex-start;
    row-gap: 20px;
  }
  .sitecontainer#dvstats .linkbox p {
    margin: 0;
  }
  .sitecontainer#dvstats .linkbox p:first-of-type {
    margin-top: 26px;
    font-weight: bold;
  }
  .sitecontainer#dvstats .sheetjs {
    /* make it not visible on small screens to avoid headache */
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .sitecontainer#dvstats .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 360px;
  }
  .sitecontainer#dvstats .headingbox {
    height: 185px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#dvstats #headingtitle {
    font-size: 45px;
    color: #060212;
  }
  .sitecontainer#dvstats .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 185px;
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#dvstats .homeandabout {
    /* bring it to the top */
    /* order: 1; */
    height: 65px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
    filter: drop-shadow(4px 1px 3px rgb(67, 66, 66));
  }
  .sitecontainer#dvstats .biglogobox {
    background-color: #eee;
    width: 100%;
    flex: none;
    height: 110px;
    order: 2;
    border-bottom: 2px solid #eee;
    /*  */
  }
  .sitecontainer#dvstats .biglogo {
    height: 100%;
    width: auto;
  }
  .sitecontainer#dvstats .topstats {
    /* this is the top one */
    padding: 30px 15px;
    font-size: 18px;
    row-gap: 35px;
    min-height: 300px;
  }
  .sitecontainer#dvstats .statscontent {
    font-size: 30px;
  }
  .sitecontainer#dvstats .statstitle {
    font-size: 18px;
  }
  .sitecontainer#dvstats #csvtablecontainer {
    width: 95%;
  }
  .sitecontainer#dvstats #csvtablecontainer table td {
    width: 95%;
    padding: 15px 4px;
  }
  .sitecontainer#dvstats #csvtablecontainer table td {
    font-size: 14px;
  }
  .sitecontainer#dvstats #csvtablecontainer table tr:last-child td:first-child {
    font-weight: bold;
    color: #0c48a5;
    font-family: "Barlow";
    font-weight: 600;
    font-size: 20px !important;
  }
}
@media screen and (max-width: 450px) {
  .sitecontainer#dvstats .abovemainsite {
    display: flex;
    flex-direction: column;
    /* more height to allow both title and breadcrumbs to be seen */
    /* bigger height as well for the bigger topnav */
    height: 360px;
  }
  .sitecontainer#dvstats .headingbox {
    height: 185px;
    width: 100%;
    flex: none;
    padding-bottom: 25px;
    padding-left: 10px;
  }
  .sitecontainer#dvstats #headingtitle {
    font-size: 45px;
    color: #060212;
  }
  .sitecontainer#dvstats .topnav {
    display: flex;
    flex-direction: column;
    /* height larger to have both on top of each other */
    height: 175px;
    /* big logo box is 110 plus homeandabout is 175 */
    /* removed the fixed navbar */
    filter: none;
  }
  .sitecontainer#dvstats .homeandabout {
    /* bring it to the top */
    /* order: 1; */
    height: 65px;
    width: 100%;
    /* instead make this be the new fixed one */
    /* ok this wont work as long as I had the filter on topnav. For now I will keep the filter over the fixed positoin */
    /* position: fixed;
    top: 0;
    z-index: 999;*/
    filter: drop-shadow(4px 1px 3px rgb(67, 66, 66));
  }
}

body {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
  gap: 10px;
  /* filter: invert(100%); */
  /* filter: grayscale(50%); */
  filter: contrast(110%);
  /* filter: blur(3px); */
  filter: saturate(110%);
}/*# sourceMappingURL=dv_main.css.map */