/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 10ex;
}

/* Screen Reader */
.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

#skip-to-content a {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#skip-to-content a:focus {
  position: static;
  width: auto;
  height: auto;
}

.content-grid {
  --padding-inline: 1rem;
  --narrow-max-width: 640px;
  --content-max-width: 960px;
  --breakout-max-width: 1280px;
  --content-size: calc((var(--content-max-width) - var(--narrow-max-width)) / 2);
  --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] minmax(0, var(--content-size)) [narrow-start] min(100% - var(--padding-inline) * 2, var(--narrow-max-width)) [narrow-end] minmax(0, var(--content-size)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}

.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

.content-grid > .narrow {
  grid-column: narrow;
}

.content-grid > .breakout {
  grid-column: breakout;
}

.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

a.button {
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}
a.button:hover {
  background-color: var(--white);
  color: var(--black);
}

:root {
  --black: #000;
  --white: #fff;
  --yellow: #EEEE16;
  --red: #E61D26;
  --dark-green: #002414;
  --teal: #0B908F;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

h2 {
  font-size: 2.617924rem;
}

a {
  color: inherit;
  font-family: inherit;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.content-grid {
  --padding-inline: 2rem;
}

h1, h2, h3, h4, h5 {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: -7rem;
  right: 0;
  cursor: pointer;
  z-index: 999;
}
#back-to-top span {
  color: white;
  font-family: "Noto Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.button-shadow {
  position: relative;
  display: inline-block;
  max-width: 30rem;
  z-index: 0;
}
.button-shadow::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 3px;
  background: var(--black);
  z-index: -1;
}
.button-shadow a {
  display: inline-block;
  padding: 0.75rem 2rem;
  color: var(--black);
  border: 3px solid var(--black);
  background-color: var(--white);
  transition: transform 0.2s;
  font-family: "Noto Sans", sans-serif;
  font-style: italic;
  text-decoration: none;
  text-transform: uppercase;
}
.button-shadow a:hover {
  transform: translate(-3px, -3px);
}

#masthead {
  background: var(--white) url("assets/images/masthead_bkg.jpg") no-repeat center center;
  background-size: cover;
  padding: 0.5rem;
  color: black;
}
#masthead .masthead__content--web {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--white);
  align-items: center;
  padding: 0 2rem;
  gap: 15%;
}
#masthead .masthead__content--web #anniversary-keyart {
  justify-self: end;
}
#masthead .masthead__content--web #anniversary-logo {
  justify-self: start;
  max-width: 24rem;
  display: none;
}
@media screen and (min-width: 600px) {
  #masthead .masthead__content--web #anniversary-logo {
    display: block;
    justify-self: start;
    max-width: 24rem;
  }
}
@media screen and (min-width: 600px) {
  #masthead .masthead__content--web {
    grid-template-columns: repeat(2, 1fr);
  }
}

main {
  position: relative;
}

#deku-1 {
  display: none;
}
@media screen and (min-width: 1200px) {
  #deku-1 {
    display: block;
    position: absolute;
    top: -10rem;
    right: -5.5rem;
    transform: rotate(-18.21deg);
    z-index: 99;
  }
}

#projects .section__body {
  position: relative;
}

#deku-2 {
  display: none;
}
@media screen and (min-width: 1000px) {
  #deku-2 {
    display: block;
    position: absolute;
    bottom: -16rem;
    left: -15.5rem;
    transform: rotate(-12.13deg);
    z-index: 99;
  }
}

.landing-page__section {
  padding-block: 4rem;
}
.landing-page__section .section__title h2 {
  background: linear-gradient(101deg, #A56113 14.45%, #DFB84F 35.97%, #FBDD91 57.91%, #DFB84F 79.03%, #A5661E 100.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
.landing-page__section .section__title h2 small {
  display: block;
  font-size: 1.333rem;
}
@media screen and (min-width: 700px) {
  .landing-page__section .section__title h2 small {
    display: inline-block;
    font-size: 2rem;
  }
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-block: 0;
  padding-inline: 0;
}
.projects-list .project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--black);
  background: linear-gradient(101deg, #A56113 14.45%, #DFB84F 35.97%, #FBDD91 57.91%, #DFB84F 79.03%, #A5661E 100.55%);
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .projects-list .project-card {
    flex-direction: row;
  }
}
.projects-list .project-card .project-number {
  position: absolute;
  top: 4rem;
  left: -4rem;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  text-transform: uppercase;
  transform: rotate(-90deg);
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
}
.projects-list .project-card__image {
  background-color: var(--black);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: start;
}
@media screen and (min-width: 600px) {
  .projects-list .project-card__image {
    padding: 1rem;
    min-width: 240px;
  }
}
.projects-list .project-card__image-frame {
  width: 100%;
  max-width: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 50%;
  border: 2px solid #008A79;
  overflow: hidden;
}
.projects-list .project-card__image-frame img {
  width: 60%;
}
.projects-list .project-card__image-frame img#mha-inconcert-logo {
  width: 80%;
}
.projects-list .project-card__content {
  padding: 2rem;
  background-color: var(--white);
  flex-grow: 1;
}
.projects-list .project-card__content .actions {
  margin-top: 2rem;
}
.projects-list .project-card__title h3 {
  margin-block: 0 1rem;
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 700;
}

#homepage {
  background: url("/assets/images/vlcsnap-2017-06-12-14h41m34s130.webp") no-repeat center center;
  background-size: cover;
  padding-block: 2rem;
}
@media screen and (min-width: 600px) {
  #homepage {
    padding-block: 4rem;
  }
}
#homepage .section__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

#footer {
  padding: 2rem;
  background-color: var(--teal);
  border-top: 2px solid var(--black);
  text-align: center;
  font-weight: 300;
  font-size: 0.618rem;
}/*# sourceMappingURL=10-anniversary.css.map */