@font-face {
  font-family: "didactgothic";
  src: url("assets/didactgothic-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  font-family: Century Gothic, Helvetica, sans-serif;
  color: #000000;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  line-height: 1.2;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background: #009999;
  color: #663366;
  overflow-y: scroll;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #009999;
  background-image: -moz-linear-gradient(45deg, #663366 15%, #009999 85%);
  background-image: -webkit-linear-gradient(45deg, #663366 15%, #009999 85%);
  background-image: -ms-linear-gradient(45deg, #663366 15%, #009999 85%);
  background-image: linear-gradient(45deg, #663366 15%, #009999 85%);
  padding-bottom: 10em;
}

hr {
  height: 0.2em;
  width: 97%;
  border-radius: 50px;
  background-color: #009999;
  background-image: -moz-linear-gradient(45deg, #663366 15%, #009999 85%);
  background-image: -webkit-linear-gradient(45deg, #663366 15%, #009999 85%);
  background-image: -ms-linear-gradient(45deg, #663366 15%, #009999 85%);
  background-image: linear-gradient(45deg, #663366 15%, #009999 85%);
}

li { 
   margin-bottom: 5px;  
}

a {
  color: #48f;
  text-decoration: none;
}

h3 {
  font-size: 1.6em;
}

main {
  margin: 0;
}
main .content {
  background: #ffffff;
  padding: 1em 2em;
  margin-bottom: -1em;
  margin-left: auto;
  margin-right: auto;
  width: min(75%, 1000px);
}
main .content h2 {
  font-family: "Poiret One", cursive;
  font-size: 3em;
  font-variant: small-caps;
  color: #6B1B68;
  color: rgb(107, 27, 104);
}

#menu {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  width: min(75%, 1000px);
  text-align: center;
  position: fixed;
  border: 1px solid black;
  top: 0;
  left: 0;
  z-index: 999;
}
#menu ul {
  border: none;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
}
#menu li {
  margin-bottom: 1em;
  margin-left: 1em;
  font-size: 1.3rem;
}
#menu li a:hover,
#menu li a:focus {
  background: transparent;
  color: #1F7989;
  color: rgb(31, 121, 137);
}
#menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
#menu li a::after {
  content: "";
  display: block;
  padding-bottom: 0.3em;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: -moz-linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background: -webkit-linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background: -ms-linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background: linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background-size: 100% 1.3em;
  /* if linear-gradient, we need to resize it */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in;
}
#menu .menu-selected {
  background: -moz-linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background: -webkit-linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background: -ms-linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background: linear-gradient(45deg, #663366 15%, #009999 85%) left bottom no-repeat;
  background-size: 100% 0.3em;
  /* if linear-gradient, we need to resize it */
}

nav {
  position: absolute;
  text-align: left;
  left: 0;
  width: 100%;
  border: 2px solid black;
  background: white;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 400ms ease-in-out;
}
nav a {
  color: #000;
  font-family: "Poiret One", cursive;
  font-size: 1.3em;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

.nav-toggle {
  display: none;
}
.nav-toggle:checked ~ nav {
  transform: scale(1, 1);
}
.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}

.nav-toggle-label {
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: black;
  height: 2px;
  width: 2em;
  border-radius: 4px;
  position: relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}
.nav-toggle-label span::before {
  bottom: 4px;
}
.nav-toggle-label span::after {
  top: 4px;
}

#footer {
  border-radius: 0px 0px 25px 25px;
  bottom: 0;
  background: #ffffff;
  font-family: "Poiret One", cursive;
  font-size: 0.8em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  width: min(75%, 1000px);
  padding-bottom: 15px;
  text-align: center;
}
#footer p {
  font-family: "Noto Sans", sans-serif;
  padding-left: 1.2em;
  padding-right: 1.2em;
  font-size: 0.9em;
}
#footer a {
  color: #008;
  text-decoration: none;
}
#footer img {
  max-width: max(30%, 200px);
}

/* so that i can selectively make text purple and big */
.purple_text {
  font-weight: 200;
  font-family: "Poiret One", cursive;
  font-size: 2em;
  font-variant: small-caps;
  color: #6B1B68;
  color: rgb(107, 27, 104);
}

.proj-desc-img {
  float: left;
  width: 35%;
}
.proj-desc-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.proj-desc-text {
  float: left;
  width: 62%;
  margin-left: 1em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  text-align: justify;
}

/* to make centering text next to images easier */
.container {
  display: flex;
  align-items: center;
  align-content: center;
}

.logo {
  width: 40%;
  margin: auto;
}
.logo img {
  width: clamp(120px, 100%, 400px);
  min-width: clamp(120px, 100%, 400px);
  max-width: clamp(120px, 100%, 400px);
}

.slogan {
  width: 60%;
  text-align: right;
  margin: auto;
}
.slogan p {
  font-size: 2.4rem;
  font-family: "Poiret One", cursive;
}

.pubimage {
  float: left;
  width: 15%;
}
.pubimage img {
  display: block;
  margin: auto;
  max-width: 100%;
}

.pubtext {
  float: left;
  width: 70%;
}
.pubtext strong {
  font-family: "PT Sans", sans-serif;
  font-size: 0.9rem;
}
.pubtext em {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
}
.pubtext p {
  font-family: "Poiret One", cursive;
  font-size: 0.9rem;
}

.news-header {
  display: flex;
  align-self: center;
  align-items: center;
}
.news-header h2 {
  margin-left: 0.2em;
}

.news-icon {
  width: clamp(9%, 50px, 80px);
  height: clamp(9%, 50px, 80px);
  max-width: clamp(9%, 50px, 80px);
}

.news-item {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}
.news-item h3 {
  grid-column: 1/4;
}

.news-left-content {
  grid-column: 1/5;
  grid-row: 2/-1;
  z-index: 2;
}

.news-right-content {
  grid-column: 4/-1;
  grid-row: 1/3;
  align-self: center;
}

.news-text p {
  padding-left: 6.3em;
}

.news-module-border-wrap {
  padding: 1rem;
  position: relative;
  background: linear-gradient(0deg, #663366 15%, #009999 85%);
  border-radius: 30px;
  padding: 6px;
}

.news-module {
  background: #FFF;
  color: #000;
  border-radius: 30px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-waterfall {
  float: left;
  margin: 1rem;
  shape-margin: 0.5rem;
}

.consort-desc {
  text-align: center;
  font-size: 1.4em;
}

.consort-bar {
  width: 78%;
}

.consort-floatright {
  float: right;
  margin-left: 2em;
  margin-right: -1em;
  margin-bottom: 1em;
}

.consort-floatleft {
  float: left;
  margin-right: 2em;
  margin-left: -1em;
  margin-bottom: 1em;
}

.consort-image {
  width: 100%;
  min-width: 120px;
  max-width: 200px;
}

.consort-desc-img {
  float: left;
  width: 35%;
}
.consort-desc-img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.consort-desc-text {
  float: left;
  width: 62%;
  margin-left: 1em;
  font-size: 1rem;
  text-align: justify;
}

/* -- Responsive Styles (Media Queries) ------------------------------------- */
@media screen and (min-width: 319px) and (max-width: 376px) {
  .container {
    margin-left: -1.4em;
    margin-right: -1.4em;
  }

  .consort-image {
    width: 80%;
    min-width: 90px;
    max-width: 90px;
  }

  .consort-floatleft {
    margin-right: 1em;
  }

  .consort-floatright {
    margin-left: 1em;
  }

  .news-item {
    grid-template-rows: 4em 5em 5em repeat(1, 1fr);
  }
  .news-item h3 {
    grid-column: 1/-1;
    grid-row: 1;
    font-size: 1.4em;
  }

  .news-left-content {
    grid-column: 1/9;
    grid-row: 2/4;
  }

  .news-right-content {
    grid-column: 2/-1;
    grid-row: 3/-1;
  }

  .news-text p {
    padding-top: 4em;
    padding-left: 0;
  }

  .slogan p {
    font-size: 1.1em;
  }

  .proj-desc-img, .proj-desc-text {
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
    font-size: 1em;
  }

  .proj-desc-img img {
    max-width: 80%;
  }

  .proj-desc-text {
    text-align: left;
  }

  main .content {
    margin-top: 1em;
    width: 90%;
    padding-top: 3em;
    border-radius: 25px 25px 0px 0px;
  }
  main .content h2 {
    font-size: 2.2rem;
  }

  #footer {
    width: 90%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 376px) and (max-width: 426px) {
  .container {
    margin-left: -1.4em;
    margin-right: -1.4em;
  }

  .consort-image {
    width: 80%;
    min-width: 100px;
    max-width: 100px;
  }

  .consort-floatleft {
    margin-right: 1em;
  }

  .consort-floatright {
    margin-left: 1em;
  }

  .news-item {
    grid-template-rows: 3em repeat(4, 1fr);
  }
  .news-item h3 {
    grid-column: 1/-1;
    grid-row: 1;
    font-size: 1.4em;
  }

  .news-left-content {
    grid-column: 1/8;
    grid-row: 2/4;
  }

  .news-right-content {
    grid-column: 2/-1;
    grid-row: 3/-1;
  }

  .news-text p {
    padding-top: 4em;
    padding-left: 0;
  }

  .slogan p {
    font-size: 1.4em;
  }

  .proj-desc-img, .proj-desc-text {
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
    font-size: 1em;
  }

  .proj-desc-img img {
    max-width: 80%;
  }

  .proj-desc-text {
    text-align: left;
  }

  main .content {
    margin-top: 1em;
    width: 90%;
    padding-top: 3em;
    border-radius: 25px 25px 0px 0px;
  }
  main .content h2 {
    font-size: 2.2rem;
  }

  #footer {
    width: 90%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .consort-image {
    min-width: 130px;
    max-width: 130px;
  }

  .consort-floatleft {
    margin-right: 1em;
  }

  .consort-floatright {
    margin-left: 1em;
  }

  .news-item {
    grid-template-rows: 3em repeat(3, 1fr);
  }
  .news-item h3 {
    grid-column: 1/-1;
    grid-row: 1;
  }

  .news-left-content {
    grid-column: 1/8;
    grid-row: 2/4;
  }

  .news-right-content {
    grid-column: 2/-1;
    grid-row: 3/-1;
  }

  .news-text p {
    padding-top: 6em;
    padding-left: 0;
  }

  .slogan p {
    font-size: 1.8em;
  }

  .proj-desc-img, .proj-desc-text {
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
    font-size: 1em;
  }

  .proj-desc-img img {
    max-width: 80%;
  }

  .proj-desc-text {
    text-align: left;
  }

  main .content {
    margin-top: 1em;
    width: 90%;
    padding-top: 3em;
    border-radius: 25px 25px 0px 0px;
  }
  main .content h2 {
    font-size: 2.2rem;
  }

  #footer {
    width: 90%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news-item {
    grid-template-rows: 4em repeat(3, 1fr);
  }
  .news-item h3 {
    grid-column: 1/-1;
    grid-row: 1;
  }

  .news-left-content {
    grid-column: 1/6;
    grid-row: 2/4;
  }

  .news-right-content {
    grid-column: 2/-1;
    grid-row: 3/-1;
  }

  .news-text p {
    padding-top: 5em;
    padding-left: 0;
  }

  .proj-desc-img, .proj-desc-text {
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
    font-size: 1.2em;
  }

  .proj-desc-img img {
    max-width: 80%;
  }

  .proj-desc-text {
    text-align: left;
  }

  main .content h2 {
    font-size: 2.7rem;
  }

  .slogan p {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .proj-desc-img, .proj-desc-text {
    width: 100%;
    margin: auto;
    margin-bottom: 1em;
  }

  .proj-desc-img img {
    max-width: 80%;
  }

  .proj-desc-text {
    text-align: left;
  }

  .slogan p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 800px) {
  .nav-toggle-label {
    display: none;
  }

  #menu {
    position: relative;
    z-index: initial;
    border-radius: 25px 25px 0px 0px;
    border: none;
    margin-top: 1em;
  }

  nav {
    /* the following lines are not from my video, but add Edge support */
    position: relative;
    text-align: left;
    transition: none;
    transform: scale(1, 1);
    background: none;
    top: initial;
    left: initial;
    border: none;
    /* end Edge support stuff */
    padding-top: 0.7em;
    padding-left: 0.5em;
    align-items: center;
  }
  nav ul {
    display: flex;
  }
  nav li {
    margin-left: 3em;
    margin-bottom: 0;
  }
  nav a {
    opacity: 1;
    position: relative;
  }
}

/*# sourceMappingURL=style.css.map */
