
/* 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;
}

/* 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;
  background-color: #0F1517;
}

/* 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: 5ex;
}



@font-face {
  font-family: 'Beth Ellen';
  src: url('/fonts/BethEllen-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('/fonts/NunitoSans-VariableFont.ttf') format('truetype');
  font-display: swap;
}



.content-wrapper {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.site-head {
  margin-bottom: 0px;
}

.site-head__hero {
    width: 100%;
    height: 20vh;
    min-height: 120px;

    background-image: url('/images/bg/wonderdome-banner.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.site-head__title {
    margin-left: 24px;
}

.sumeau-title {
    color: whitesmoke;
    font-family: 'Beth Ellen', cursive;
    font-size: 30px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
    margin: 0px 24px;
    padding: 0;
    align-items: flex-end;
    height: 100%;

    color: whitesmoke;
    font-family: 'Beth Ellen', cursive;
}

.social-icon {
    height: 32px;
}

.nav__item {
  /* Optional: Add any item-specific styling */
}




article {
  margin: 20px;
  color: whitesmoke;
  font-family: 'Nunito Sans';
}

article .post-image {
  width: 70%;
}

article .summary-container {
  min-width: 340px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgb(66, 66, 66);
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(70, 69, 72, 0.1);
}

article .summary-container-link {
  text-decoration: none;
  color: inherit;
}

.credit-list {

}

.credit-list p {
  margin-top: 0;
}






.streaming-container {
  margin-top: 24px;
  margin-bottom: 36px;
  background-color: #191619;
  padding: 6px;
  border-radius: 10px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.35));
}

.streaming-layout {
    margin: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0rem;
}

.streaming-title {
  margin-bottom: 24px;
  text-align: center;
}

.streaming-image {
    margin: auto auto 24px auto;
    object-fit: cover;
    height: 320px;
}

.streaming-links {
    margin: 6px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 24rem;
}

.streaming-anchor {
/* dummy class for zaraz */
}

.streaming-link {
    margin: 6px;
    background-color: #2F2830;
    display: flex;
    align-items: center;
    border-radius: 4px;
}