body.dark {
  background-color: #222222;
  color: white;
}
body.dark #loader div {
  background-color: white;
}
body.dark .navbar {
  background-color: #0066a1;
  box-shadow: 5.65625px 5.65625px 11.3125px #000000;
}
body.dark .navbar .menu.open::after {
  background-color: #0e0e0e;
}
body.dark .navbar .menu_options a {
  color: white;
}
body.dark #about h1, body.dark #techloop h1, body.dark #events h1, body.dark #blogs h1, body.dark #podcast h1, body.dark #board h1 {
  border-color: white;
}
body.dark #about .domains, body.dark #techloop .domains, body.dark #events .domains, body.dark #blogs .domains, body.dark #podcast .domains, body.dark #board .domains {
  box-shadow: -10px -10px 20px #2e2e2e, 10px 10px 20px #1b1b1b;
}
body.dark #about .carousel .previous,
body.dark #about .carousel .next, body.dark #techloop .carousel .previous,
body.dark #techloop .carousel .next, body.dark #events .carousel .previous,
body.dark #events .carousel .next, body.dark #blogs .carousel .previous,
body.dark #blogs .carousel .next, body.dark #podcast .carousel .previous,
body.dark #podcast .carousel .next, body.dark #board .carousel .previous,
body.dark #board .carousel .next {
  color: white;
}
body.dark #techloop .carousel,
body.dark #events .carousel {
  background: linear-gradient(141.25deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}
body.dark #techloop .carousel::after,
body.dark #events .carousel::after {
  background: linear-gradient(160.01deg, rgba(0, 102, 161, 0.14) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 102, 161, 0.07) 100%);
}
body.dark #blogs::after {
  background: url(../images/blogs_circle_dark.svg) no-repeat center center/cover;
}
@media only screen and (max-width: 41rem) {
  body.dark #blogs::after {
    background: url(../images/blogs_circle_dark_mobile.svg) no-repeat center center/cover;
  }
}
body.dark #board .board-member {
  background-color: #222222;
  box-shadow: inset 0px -3px 4px rgba(0, 0, 0, 0.85);
  filter: drop-shadow(-10px -10px 20px #151515) drop-shadow(10px 10px 20px #000000);
}
body.dark #alumni-board {
  
    background: url(../images/alumni-background-dark.svg);
    width: 100%;
    padding-top: 7%;
    height: 100%;
    padding-bottom: 22vh;
  }


#loader {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: 1rem;
  transform: translateZ(0);
}
#loader div {
  width: 1rem;
  height: 1rem;
  background-color: #222222;
  margin: 0.5rem;
  border-radius: 0.5rem;
}
#loader div:nth-child(1) {
  position: relative;
  left: 2rem;
  transform: scale(0);
  -webkit-animation: appear 0.65s infinite;
          animation: appear 0.65s infinite;
}
#loader div:nth-child(2), #loader div:nth-child(3) {
  -webkit-animation: move 0.65s infinite;
          animation: move 0.65s infinite;
}
#loader div:nth-child(4) {
  -webkit-animation: fade 0.65s infinite;
          animation: fade 0.65s infinite;
}

@-webkit-keyframes appear {
  to {
    transform: scale(1);
  }
}

@keyframes appear {
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes fade {
  to {
    transform: scale(0);
  }
}
@keyframes fade {
  to {
    transform: scale(0);
  }
}
@-webkit-keyframes move {
  to {
    transform: translateX(2rem);
  }
}
@keyframes move {
  to {
    transform: translateX(2rem);
  }
}
.navbar {
  width: 100%;
  background-color: white;
  box-shadow: 0px 2px 4px 0px #0066a1;
  display: flex;
  align-items: center;
  padding: 1.5rem 3%;
  position: fixed;
  z-index: 30000;
}
.navbar .hamburger-menu {
  display: none;
  cursor: pointer;
}
.navbar .menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.navbar .menu .cross {
  display: none;
  cursor: pointer;
}
.navbar .menu .menu_options {
  color: #0066a1;
  font-weight: 600;
  padding: 0 1rem;
}
.navbar .menu .menu_options:visited {
  color: #0066a1;
}

.board-members{
  grid-template-columns: auto auto auto auto auto;
}
.navbar .socials {
  display: flex;
  margin-left: auto;
  list-style: none;
  gap: 1rem;
  align-items: center;
}
@media only screen and (max-width: 945px) {
  .navbar .socials {
    width: 100%;
  }
}
.navbar .socials #change-theme {
  padding-left: 1.5rem;
  padding-right: 2%;
  cursor: pointer;
}
@media only screen and (max-width: 945px) {
  .navbar .socials #change-theme {
    margin-left: auto;
  }
}

@media only screen and (max-width: 945px) {
  .navbar .hamburger-menu {
    display: block;
    position: absolute;
    top: 75px;
    right: 0;
    margin: 2rem 1.5rem;
  }
  .navbar .menu.close {
    display: none;
  }
  .navbar .menu.open {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    width: 65%;
    padding-top: 25vh;
    padding-left: 12.5%;
    background-color: #2d8de0;
    opacity: 0.85;
  }
  .navbar .menu.open::after {
    content: "";
    width: 35vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -35vw;
    background-color: #7a7a7a;
    opacity: 0.4;
  }
  .navbar .menu.open .cross {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    margin: 3rem 2rem;
  }
  .navbar .menu.open .menu_options {
    padding: 0.5rem 0;
  }
  .navbar .menu.open .menu_options a {
    font-size: 24px;
    color: white;
  }
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(105vh);
}
header > * {
  margin: 1rem 0;
}
header .ieee-logo-mobile {
  display: none;
}
header .coming-up {
  color: #2f93eb;
}
header .event-name {
  font-size: 1.5rem;
  border-left: 2px solid #2f93eb;
  border-right: 2px solid #2f93eb;
  padding: 0 1rem;
}
header .cta-button {
  font-size: 14px;
  color: white;
  background-color: #2f93eb;
  padding: 0.5rem;
  border-radius: 2px;
}
header .shape {
  position: absolute;
  z-index: -1;
}
header .mobile-shape {
  display: none;
}

@media screen and (max-width: 1205px) {
  header .ieee-logo {
    display: none;
  }
  header .ieee-logo-mobile {
    display: block;
  }
  header .event-name {
    font-size: 14px;
  }
  header .cta-button {
    font-size: 12px;
  }
  header .mobile-shape {
    display: block;
  }
  header .desktop-shape {
    display: none;
  }
}
header .left-circle {
  top: 20%;
  left: -12.25rem;
}
header .top-square {
  top: 4rem;
  left: 5%;
}
header .top-triangle {
  top: 0;
  left: 18%;
}
header .top-semicircle {
  left: 35%;
  top: -15px;
}
header .right-semicircle {
  top: -21px;
  right: 15px;
}
header .right-rings {
  top: -21px;
  right: 0;
}
header .center-triangle {
  top: 50%;
  right: 27.5%;
}
header .center-square {
  top: 65%;
  left: 70%;
}
header .center-bigsquare {
  top: 84%;
  left: 60%;
}
header .center-bottomtriangle {
  top: 80%;
  left: 25%;
}

header .top-square-mobile {
  top: 3rem;
  left: 1rem;
}
header .top-triangle-mobile {
  top: 2.5rem;
  left: 9.5em;
}
header .right-semicircle-mobile {
  top: 4rem;
  right: 0;
}
header .bottom-rings-mobile {
  bottom: -5.35rem;
  left: -6.15rem;
}
header .center-triangle-mobile {
  top: 50%;
  right: 15%;
}
header .bottom-triangle-mobile {
  top: 65%;
  left: 23.5%;
}
header .center-square-mobile {
  bottom: 7.5rem;
  right: 0;
}
header .bottom-square-mobile {
  bottom: -1rem;
  right: 0;
}

@media screen and (max-width: 400px) {
  header .top-triangle-mobile {
    display: none;
  }
  header .bottom-triangle-mobile {
    display: none;
  }
  header .bottom-rings-mobile {
    left: -8.5rem;
  }
}
#about {
  margin: min(15%, 7.5rem);
  padding-top: 7%;
}
#about h1 {
  font-size: 33px;
  font-weight: normal;
  color: #2f93eb;
  border-bottom: 2px solid #141414;
  padding-bottom: 0.15rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#about p {
  line-height: 24px;
  margin: 2rem 0;
}
#about .domains {
  padding: 1.5rem min(7.5%, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: -10px -10px 20px #ffffff, 10px 10px 20px #ededed;
  border-radius: 0.5rem;
}
#about .domains .domain {
  flex-basis: 16.5rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin: 0.5rem 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#about .domains .domain::-webkit-scrollbar {
  display: none;
}
#about .domains .domain .domain-text {
  font-size: 20px;
  color: #2f93eb;
  padding-left: 1rem;
  align-self: center;
}

#techloop,
#events {
  margin: min(15%, 7.5rem);
  position: relative;
  padding-top: 10%;
}
#techloop h1,
#events h1 {
  font-size: 33px;
  font-weight: normal;
  color: #2f93eb;
  border-bottom: 2px solid #141414;
  padding-bottom: 0.15rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#techloop p,
#events p {
  line-height: 24px;
  margin: 2rem 0;
}
#techloop .carousel,
#events .carousel {
  padding: 2rem;
  height: 23.85rem;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(141.25deg, rgba(218, 238, 255, 0.12) 0%, rgba(201, 230, 255, 0) 49.48%, rgba(201, 230, 255, 0.09) 99.48%);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
#techloop .carousel::after,
#events .carousel::after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  background: linear-gradient(160.01deg, rgba(0, 102, 161, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 102, 161, 0.2) 100%);
  border-radius: 10px;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 1px 100%, 1px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 1px), 1px calc(100% - 1px), 1px 100%, 100% 100%, 100% 0%);
}
#techloop .carousel .previous,
#techloop .carousel .next,
#events .carousel .previous,
#events .carousel .next {
  position: absolute;
  top: calc(50% - 3.5rem);
  font-size: 3.5rem;
  color: #141414;
  cursor: pointer;
}
#techloop .carousel .previous,
#events .carousel .previous {
  left: -3rem;
}
#techloop .carousel .next,
#events .carousel .next {
  right: -3rem;
}
#techloop .carousel .container,
#events .carousel .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#techloop .carousel .container::-webkit-scrollbar,
#events .carousel .container::-webkit-scrollbar {
  display: none;
}
#techloop .carousel .container .slide,
#events .carousel .container .slide {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  min-width: 100%;
  scroll-snap-align: start;
}
#techloop .carousel .container .slide .content,
#events .carousel .container .slide .content {
  width: 45%;
}
#techloop .carousel .container .slide .content h2,
#events .carousel .container .slide .content h2 {
  font-size: 33px;
  font-weight: normal;
  color: #54afff;
}
#techloop .carousel .container .slide img,
#events .carousel .container .slide img {
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1205px) {
  #techloop .carousel,
#events .carousel {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 1rem;
  }
  #techloop .carousel .container .slide,
#events .carousel .container .slide {
    flex-direction: column;
  }
  #techloop .carousel .container .slide .content,
#events .carousel .container .slide .content {
    width: 100%;
  }
  #techloop .carousel .container .slide img,
#events .carousel .container .slide img {
    width: 100%;
    height: 15rem;
  }
}

@media only screen and (max-width: 850px) {
  #techloop h1,
#events h1 {
    font-size: 24px;
  }
  #techloop p,
#events p {
    font-size: 14px;
    margin: 1rem 0;
  }
  #techloop .carousel .previous,
#techloop .carousel .next,
#events .carousel .previous,
#events .carousel .next {
    font-size: 2.5rem;
  }
  #techloop .carousel .previous,
#events .carousel .previous {
    left: -2rem;
  }
  #techloop .carousel .next,
#events .carousel .next {
    right: -2rem;
  }
  #techloop .carousel .container .slide .content h2,
#events .carousel .container .slide .content h2 {
    font-size: 20px;
    font-weight: 600;
  }
}

.techloop-top-circle,
.techloop-bottom-circle,
.techloop-triangle {
  display: block;
}

.techloop-top-circle-mobile,
.techloop-bottom-circle-mobile,
.techloop-triangle-mobile {
  display: none;
}

@media only screen and (max-width: 850px) {
  .techloop-top-circle,
.techloop-bottom-circle,
.techloop-triangle {
    display: none;
  }
  .techloop-top-circle-mobile,
.techloop-bottom-circle-mobile,
.techloop-triangle-mobile {
    display: none;
  }
}
.techloop-top-circle {
  top: -3.5rem;
  left: calc(-1 * min(10vw, 7.5rem));
}

.techloop-bottom-circle {
  bottom: -3.5rem;
  right: calc(-1 * min(10vw, 7.5rem));
}

.techloop-triangle {
  left: 7.5rem;
  bottom: -15rem;
}

.techloop-top-circle-mobile {
  top: -3.5rem;
  left: calc(-1 * min(10vw, 7.5rem));
}

.techloop-bottom-circle-mobile {
  bottom: -3.5rem;
  right: calc(-1 * min(10vw, 7.5rem));
}

.techloop-triangle-mobile {
  left: 7.5rem;
  bottom: -15rem;
}

#blogs,
#podcast {
  margin: min(10%, 7.5rem);
  padding-top: 10%;
}
#blogs h1,
#podcast h1 {
  font-size: 33px;
  font-weight: normal;
  color: #2f93eb;
  border-bottom: 2px solid #141414;
  padding-bottom: 0.15rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#blogs > p,
#podcast > p {
  line-height: 24px;
  margin: 2rem 0;
}
#blogs .carousel,
#podcast .carousel {
  height: 21.25rem;
  overflow-x: visible;
  width: calc(100vw - min(10vw, 7.5rem));
  position: relative;
}
#blogs .carousel .previous,
#blogs .carousel .next,
#podcast .carousel .previous,
#podcast .carousel .next {
  position: absolute;
  top: 35%;
  font-size: 3.5rem;
  color: #141414;
}
#blogs .carousel .previous,
#podcast .carousel .previous {
  left: -2rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: default;
}
#blogs .carousel .next,
#podcast .carousel .next {
  right: 1.5rem;
  cursor: pointer;
}
#blogs .carousel .container,
#podcast .carousel .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
#blogs .carousel .container::-webkit-scrollbar,
#podcast .carousel .container::-webkit-scrollbar {
  display: none;
}
#blogs .carousel .container .slide,
#podcast .carousel .container .slide {
  background-color: gray;
  height: 100%;
  width: 45%;
  min-width: 32.5rem;
  margin-right: 2rem;
  display: grid;
  grid-template-rows: 4fr 2fr 1fr;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
#blogs .carousel .container .slide:first-child::after,
#podcast .carousel .container .slide:first-child::after {
  content: "latest";
  text-transform: uppercase;
  letter-spacing: 0.15px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1rem;
  color: white;
  width: 5.5rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 9%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0066a1;
  z-index: 5;
}
#blogs .carousel .container .slide:last-child,
#podcast .carousel .container .slide:last-child {
  margin-right: 0;
}
#blogs .carousel .container .slide img,
#blogs .carousel .container .slide .content,
#blogs .carousel .container .slide .read-more,
#podcast .carousel .container .slide img,
#podcast .carousel .container .slide .content,
#podcast .carousel .container .slide .read-more {
  width: 100%;
  min-height: 0;
}
#blogs .carousel .container .slide img,
#podcast .carousel .container .slide img {
  width: 100%;
  height: 175%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blogs .carousel .container .slide .content,
#podcast .carousel .container .slide .content {
  padding: 1rem;
  color: white;
  z-index: 5;
}
#blogs .carousel .container .slide .content::after,
#podcast .carousel .container .slide .content::after {
  content: "";
  width: 125%;
  height: 75%;
  position: absolute;
  bottom: -35%;
  left: -12.5%;
  background: linear-gradient(93.55deg, #000000 -8.11%, rgba(0, 0, 0, 0.76) 136.59%);
  filter: blur(25px);
  z-index: -1;
}
#blogs .carousel .container .slide .content h2,
#podcast .carousel .container .slide .content h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}
#blogs .carousel .container .slide .content p,
#podcast .carousel .container .slide .content p {
  font-size: 12px;
  width: 100%;
}
#blogs .carousel .container .slide .read-more,
#podcast .carousel .container .slide .read-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 1rem;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  z-index: 5;
}

@media only screen and (max-width: 41rem) {
  #blogs .carousel,
#podcast .carousel {
    width: 100%;
  }
  #blogs .carousel .previous,
#podcast .carousel .previous {
    left: -2rem;
    opacity: 1;
    cursor: pointer;
  }
  #blogs .carousel .next,
#podcast .carousel .next {
    right: -2rem;
  }
  #blogs .carousel .container .slide,
#podcast .carousel .container .slide {
    min-width: 100%;
  }
}
#podcast .carousel .container .slide:first-child::after {
  content: "recent";
}

#blogs {
  position: relative;
}
#blogs::after {
  content: "";
  width: 32.5rem;
  height: 32.5rem;
  position: absolute;
  bottom: -17.5rem;
  left: -17.5rem;
  background: url(../images/blogs_circle_light.svg) no-repeat center center/cover;
  z-index: -5;
}
@media only screen and (max-width: 41rem) {
  #blogs::after {
    width: 21.5rem;
    height: 21.5rem;
    bottom: -12.5rem;
    left: -12.5rem;
    background: url(../images/blogs_circle_light_mobile.svg) no-repeat center center/cover;
  }
}

#board {
  margin: min(15%, 7.5rem);
  position: relative;
  padding-top: 10%;
}
#board h1 {
  font-size: 33px;
  font-weight: normal;
  color: #2f93eb;
  border-bottom: 2px solid #141414;
  padding-bottom: 0.15rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem 0;
}
#board .board-members {
  width: 100%;
  display: grid;
  justify-content: center;
  gap: 1.5rem;
}
#board .board-members .board-member {
  justify-self: center;
  padding-bottom: 1rem;
  width: 185px;
  height: 225px;
  border-radius: 8px;
  background-color: #fcfcfc;
  box-shadow: inset 0px -3px 4px rgba(255, 255, 255, 0.85);
  filter: drop-shadow(-10px -10px 20px #ffffff) drop-shadow(10px 10px 20px #ededed);
  overflow: hidden;
}
#board .board-members .board-member img {
  width: 100%;
  height: 164px;
  -o-object-fit: cover;
     object-fit: cover;
}
#board .board-members .board-member .content {
  height: calc(100% - 164px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#board .board-members .board-member .content .position {
  color: #7a7a7a;
  text-transform: uppercase;
  font-size: 10px;
}
#board > a {
  display: flex;
  margin-top: 10rem;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5rem;
  margin: 2rem auto;
  padding: 0.85rem 1.5rem;
  background-color: #2f93eb;
  text-transform: uppercase;
  color: white;
}
#board > a:last-child {
  background-color: transparent;
  color: #2f93eb;
  border: 1px solid #2f93eb;
}

.board-rings {
  top: -19.5rem;
  right: -7.5rem;
}

.board-square1 {
  top: -7.5rem;
  left: calc(-1 * min(15%, 7.5rem));
}

.board-square2 {
  top: 5rem;
  left: calc(-1 * min(15%, 7.5rem));
}

.board-square3 {
  top: 15rem;
  left: calc(-1 * min(15%, 7.5rem));
}

.board-square4 {
  bottom: 0;
  right: 13rem;
}

.board-square5 {
  bottom: 0;
  right: 5rem;
}

.board-square6 {
  bottom: -2rem;
  right: -7.5rem;
}

.mobile-shape {
  display: none;
}

@media only screen and (max-width: 1025px) {
  #board .desktop-shape {
    display: none;
  }
  #board .mobile-shape {
    display: block;
  }
  #board h1 {
    font-size: 24px;
  }
  #board .board-members .board-member {
    background-color: white;
    width: 123px;
    height: 150px;
  }
  #board .board-members .board-member img {
    height: 6.815rem;
  }
  #board .board-members .board-member .content {
    height: calc(100% - 6.815rem);
    font-size: 10px;
  }
  #board .board-members .board-member .content .position {
    font-size: 7px;
  }
  #board .board-square1-mobile {
    top: 1rem;
    left: calc(-1 * min(21%, 7.5rem));
  }
  #board .board-square2-mobile {
    top: 6.5rem;
    left: calc(-1 * min(21%, 7.5rem));
  }
  #board .board-square3-mobile {
    top: 13rem;
    left: calc(-1 * min(21%, 7.5rem));
  }
  #board .board-square4-mobile {
    bottom: calc(-1 * min(21%, 7.5rem));
    right: 6.5rem;
  }
  #board .board-square5-mobile {
    bottom: calc(-1 * min(21%, 7.5rem));
    right: 1rem;
  }
  #board .board-square6-mobile {
    bottom: calc(-1 * min(21%, 7.5rem));
    right: calc(-1 * min(21.5%, 7.5rem));
  }
}
#events .shape {
  display: none;
}

* {
  padding: 0;
  
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #0066A1;

}

button {
  cursor: pointer;
}

#main-content {
  display: none;
}

.shape {
  position: absolute;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */
#dropdown-container {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: larger;
  margin-top: 10vh;
  max-width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transition: max-height 0.5s ease-out;
  color: #0066A1;
  font-size: x-large;
  width: 100%;
  transform: translateX(-50%);
}
select#dropdown-container {
  background-color: transparent;
  border: 2px solid #0066A1;
  color: #0066A1;
}
select#dropdown-container option {
  border: 2px solid #0066A1;
  color: #0066A1;
  background-color:white;
}
select#dropdown-container option:hover{
  background-color: #0066A1;
  color: white;
}
body.dark select#dropdown-container option {
  border: 2px solid #0066A1;
  color: #0066A1;
  background-color:#222222;
}
body.dark select#dropdown-container option:hover{
  background-color: #0066A1;
  color: white;
}
select#dropdown-container {
  background-color: transparent;
  border: 2px solid #0066A1;
  color: #0066A1;
  padding-left: 2vh;
  padding-right: 7vh;
  font-weight: bold;
  padding-top: 0.5vh;
  padding-bottom: 0.5vh;
  background-size: 20px;
}

option {
  appearance: none;
  background-color: transparent;
}
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.image-container img {
  max-width: 100%;
  max-height: 200px;
}

#alumni-board {
  background: url(../images/alumni-background-light.svg);
  width: 100%;
  padding-top: 7%;
  height: 100%;
  padding-bottom: 0;
  overflow-y: hidden;
}
.year {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  font-size: xx-large;
  

}

.image-grid img {
  width: 100%;
  height: auto;
}
.image-grid {
  display: none;
  margin-top: 20px;
}
.image-grid.show {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 5vh;
  /* margin: 16vh; */
  margin-top: 2vh;
}
#text-container {
  text-align: center;
  margin-top: 13vh;
  font-size:xx-large;
  color: #0066A1;
  
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-color: black;
}
.dark #text-container {
  text-align: center;
  margin-top: 13vh;
  font-size:xx-large;
  color: #0066A1;
  
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-color: white;
}

@media screen and (max-width: 1100px) {
  .image-grid.show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 5vh;
    /* margin: 16vh; */
    margin-top: 2vh;
  }
}

/* Specific styling for alumni page board section */
#alumni-board #board {
  margin-top: 20px;
  padding-top: 0;
}

#alumni-board .board-members {
  margin-top: 30px;
}

#alumni-board #text-container {
  margin-bottom: 10px;
}

/* Add shadow effects for light mode */
#alumni-board .board-member {
  background-color: #fcfcfc;
  box-shadow: 
    -10px -10px 20px rgba(255, 255, 255, 0.8),
    10px 10px 20px rgba(174, 174, 192, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.2),
    inset 5px 5px 10px rgba(174, 174, 192, 0.1);
  transition: all 0.3s ease;
}

#alumni-board .board-member:hover {
  transform: translateY(-5px);
  box-shadow: 
    -15px -15px 30px rgba(255, 255, 255, 0.8),
    15px 15px 30px rgba(174, 174, 192, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.2),
    inset 5px 5px 10px rgba(174, 174, 192, 0.1);
}

/* Keep dark mode shadows */
body.dark #alumni-board .board-member {
  background-color: #222222;
  box-shadow: inset 0px -3px 4px rgba(0, 0, 0, 0.85);
  filter: drop-shadow(-10px -10px 20px #151515) drop-shadow(10px 10px 20px #000000);
}

body.dark #alumni-board .board-member:hover {
  transform: translateY(-5px);
}