/* Idea for this one:
Basically everything is flex. To make it responsive switch direction from flex row to flex column
*/
.schoolist-ul {
  width: 90%;
  height: auto;
  background-color: #eee;
  list-style-type: none;
  padding: 45px 35px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  /* 1/3 width for each column. Use media quieries to change width */
  /* finish this later */
}
.schoolist-ul .schoolist-column {
  /*  add padding too */
  /* regenerate the  */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.schoolist-ul .schoolist-column a {
  background-color: #d45c21;
  width: 100%;
  height: 190px;
  border-radius: 25px;
  padding: 25px 30px 30px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: background-color 0.4s border 0.4s;
}
.schoolist-ul .schoolist-column a .schoolnamediv {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
}
.schoolist-ul .schoolist-column a:hover {
  background-color: #bf5701;
  border: 2px solid white;
}
@media (min-width: 1000px) {
  .schoolist-ul {
    /* this is the width that it will be 3 columns until */
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .schoolist-ul {
    grid-template-columns: repeat(1, 90%);
    justify-content: center;
  }
  .schoolist-ul .schoolist-column a {
    padding: 25px 15px 30px 18px;
  }
  .schoolist-ul .schoolist-column a .schoolnamediv {
    font-size: 18px;
  }
}
@media screen and (max-width: 550px) and (max-width: 375px) {
  .schoolist-ul .schoolist-column a .schoolnamediv {
    word-break: break-all;
  }
}
/* this div contains all the a's */
.selector {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 23px;
  border-radius: 26px;
  height: 100px;
  gap: 0;
  width: 60%;
  margin-bottom: -60px;
}
.selector #currentpage {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  color: rgb(255, 239, 239);
  background-color: #284dbc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
  height: 100%;
  transition: all 0.5s;
}
.selector #currentpage:hover {
  background-color: #1f42a9;
}
.selector .coursedata {
  color: black;
  flex: 1;
  height: 100%;
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
}
.selector .coursedata a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  background-color: rgb(255, 255, 255);
  transition: all 0.5s;
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
  border: 2px solid #284dbc;
  color: #284dbc;
}
.selector .coursedata a:hover {
  background-color: rgb(103, 125, 226);
  color: white;
}
.selector .coursedata a:active {
  background-color: var(--secondarynavy);
}
.selector .coursedata a:visited {
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .selector {
    flex-direction: column;
    width: 80%;
    gap: 0;
    border-radius: 0;
  }
  .selector .degreeplans {
    width: 100%;
    padding: 10px;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px !important;
  }
  .selector .coursedata {
    width: 100%;
  }
  .selector .coursedata a {
    border-radius: 0;
    padding: 10px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }
}
@media screen and (max-width: 400px) {
  .selector {
    flex-direction: column;
    width: 80%;
    border-radius: 0;
    gap: 0;
    font-size: 19px;
  }
  .selector .degreeplans {
    width: 100%;
    padding: 10px;
  }
  .selector .coursedata {
    width: 100%;
  }
  .selector .coursedata a {
    padding: 10px;
  }
}

*,
*::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;
  /* 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 {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* 
Above mainsite and its children
*/
.abovemainsite {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 270px;
}

/* topnav beginning */
.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));
}

.biglogobox {
  height: 200px;
  width: 100%;
  overflow: hidden; /* optional: clips the image if it's too big */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.biglogo {
  /* height the same as topnav here, 100px */
  height: 70%;
  width: auto;
}

/* 




/* 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 */
.mainsite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 55px;
  width: 100%;
  padding: 40px 30px;
  flex: 1 1 600px;
  border-top: 10px solid #153f66;
}

.introbox {
  width: 90%;
  border: 5px black dashed;
  border-radius: 26px;
  padding: 30px 35px;
  font-family: Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
}

.middlenav {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* this is the ul */
/* 

Begin left content stuff
*/
.leftcontent {
  /* this affects the width */
  flex: 50%;
  background-color: #1792ae;
  padding: 10px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 25px;
  min-height: 300px;
}

.schoollistheaderbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
}

.schoollistbox {
  border: 4px solid rgb(164, 12, 12);
  border-radius: 26px;
  width: calc(100% - 80px);
  padding: 20px 10px 20px 40px;
}

.schoollistbox ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  /* control paddig in the schoollistbox instead, its easier */
  padding: 0;
}

.schoollink {
  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;
}

.schoollink a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.linksvg {
  filter: invert(100%) brightness(200%);
  width: 20px;
  height: auto;
  margin-top: 6px;
}

/* end all the linking stuff */
.filescontainer {
  border: 4px dashed rgb(16, 11, 82);
  border-radius: 26px;
  width: 92%;
  padding: 20px 29px;
}

/* this controls this h3 elements in files container */
.filescontainer h3 {
  color: #284dbc;
}

.filescontainer ul {
  list-style-type: none; /* Removes bullets */
  /* indent */
  padding-left: 30px;
}

.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;
}

/* this changes the styling on the names of the file like "Sample Semester PDF */
.linkbox p:first-of-type {
  margin-top: 10px;
  font-weight: bold;
  max-width: 137px;
}

/* add animations to these mf's */
.linkbox a i {
  color: rgb(21, 21, 69);
}

/* end left content stuff */
/* 





*/
/* Right content stuff */
.rightcontent {
  flex: 50%;
  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;
  padding: 40px 30px;
}

/* 




*/
.undermainsite {
  background-color: rgb(255, 255, 255);
  width: 100%;
  /* this is for now essentially footer top margin */
  height: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.home_random_stats {
  /* its 100% of middlenav, which is 80% */
  width: 100%;
  height: 95px;
  display: flex;
  flex-direction: row;
  /* this jsut centers the ul */
  align-items: center;
  justify-content: center;
}

.home_random_stats ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  -moz-column-gap: 90px;
       column-gap: 90px;
  /* since doing space evenly, remove gap */
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}

.home_random_stats ul li {
  /* make them big so you can hover */
  width: 25%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  background-color: #153f66;
  border-radius: 35px;
  padding: 20px;
}

.home_random_stats li:hover {
  background-color: #284dbc;
  cursor: pointer;
}

.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;
}

#randompagebutton {
  border: 3px solid rgb(35, 44, 116);
}

#randompagebutton:hover {
  background-color: #fdfbfa;
  color: #153f66;
  border: 5px solid rgb(15, 29, 89);
  border-radius: 25px;
}

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

Mobile Screens

*/
@media screen and (max-width: 700px) {
  .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;
  }
  .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));
  }
  .middlenav {
    width: 90%;
    /* 300 px plus gap of 30 for 3 */
    height: 390px;
  }
  .home_random_stats {
    /* bring it to the top */
    width: 100%;
  }
  .home_random_stats ul {
    display: flex;
    flex-direction: column;
    height: 405px;
    row-gap: 35px;
  }
  .home_random_stats ul li {
    width: 60%;
    height: 25%;
  }
  .biglogobox {
    background-color: #fff;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /*  */
  }
  .biglogo {
    height: 65%;
    width: auto;
  }
  /* 



   this one here is pretty important */
  .mainsite {
    flex-direction: column;
  }
  .platformsbox {
    width: 40%;
    min-width: 200px;
    padding: 10px 30px;
    border-radius: 26px;
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
  }
  .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%;
  }
  .icons a .fa-linkedin {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #0072b1;
    margin-bottom: 7px;
  }
  .icons a .bi-substack {
    font-size: 10px;
    width: 27px;
    height: 27px;
    fill: #ff7731; /* for SVG */
  }
}
/* even smaller screensizes here */
@media screen and (max-width: 550px) {
  .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;
  }
  .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));
  }
  .biglogobox {
    width: 100%;
    /* keep in mind its still flex center */
    height: 160px;
    /*  */
  }
  .biglogo {
    height: 70%;
    width: auto;
  }
  .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) {
  .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;
  }
  .biglogo {
    height: 65%;
    width: auto;
  }
  .topnav {
    background-color: #dce2e6;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* keep this */
  }
  .home_random_stats {
    height: 65px;
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */