:root {
  --text-color: rgb(109,2,2);
  --link-color: rgb(194, 77, 77);
  --background-color: rgb(248, 200, 200); 
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Albura-Medium";
  src: url(../fonts/albura/Albura-Medium.otf) format("opentype");
}

@font-face {
  font-family: "Albura-Light";
  src: url(../fonts/albura/Albura-Light.otf) format("opentype");
}

@media (max-width: 900px) {

  body .main-art {
    display: flex;
    flex-direction: column;
  }

  body .main-art .main-page-text {
    font-size: 1rem;
    padding-top: 10px;
    display: flex;
    width: 250px;
  }

  body .main-art .red-logo {
    display: flex;
    justify-content: center;
    width: 230px;
    height: 230px;
    margin: 0px;
  }

  body .about {
    width: 350px;
    padding: 15px 30px;
  }

  body .about .bio-pic img {
    width: 70%;
    height: 70%;
  }

  body .about .litterbox-bio-pic img {
    width: 70%;
    height: 70%;
  }

  body .about .bio-text {
    width: 300px;
    font-size: 1rem;
  }

  body .manifesto-container {
    width: 320px;
    margin-top: 30px;
  }

  body .manifesto-container .manifesto {
    font-size: 1rem;
    margin: 10px;
    padding: 10px 20px;
  }

  body .single-text {
    font-size: 1.2rem;
    padding: 50px;
  }

  body .workshop-description {
    font-size: 1.2rem;
    padding: 50px;
  }

  body .single-text .game-rules-container {
    width: 600px;
  }

  body .workshop-description .workshop-description-container {
    width: 600px;
  }

  body .workshop-description .playground-banner img {
    width: 600px;
  }

  body .contact {
    font-size: 1rem;
    padding: 40px 50px;
  }

  nav .menu li a {
    font-size: 1.5rem;
    margin: 0px 0px;
    letter-spacing: 0.4px;
    transition: all ease 0.3s;
  }

  nav .menu li a:hover {
    font-size: 1.7rem;
  }

  ul .menu {
    position: absolute;
    width: 100%;
    height: 100%; 
  }

  body .various-media .youtube-miniature img {
    width: 500px;
  }

  body .various-media .youtube-miniature .description-container {
    width: 500px;
  }

  body .various-media .art-description-container {
    width: 400px;         /* Full width of the screen */
    padding: 20px;       /* Smaller padding for smaller screens */
    box-sizing: border-box; /* Ensures padding doesn't overflow width */
  }

  body .various-media .art-description-container .h3 {
    font-size: 1.7rem;
  }

  body .various-media .art-description-container .paragraph {
    font-size: 1.2rem;
  }

}

@media (max-width: 450px) {
  nav .menu-btn:checked ~ .menu {
    flex-direction: column;
    justify-content: center;
  }

  nav .menu li a {
    font-size: 2.1rem;
    margin: 0px 0px;
    letter-spacing: 0.1px;
    transition: all ease 0.3s;
    padding: 12px 10px;
  }

  nav .menu li a:hover {
    font-size: 2.2rem;
  }

  body .contact {
    padding: 30px 22px;
    font-size: 1.1rem;
  }

  body .single-text .game-rules-container {
    width: 350px;
    padding: 10px;
    padding-bottom: 40px;
  }

  body .workshop-description .workshop-description-container {
    width: 310px;
    padding-top: 30px;
    padding-left: 5px;
    padding-bottom: 15px;
  }

  body .workshop-description .playground-banner img {
    width: 310px;
  }

  body .single-text .game-rules {
    padding: 20px 20px;
  }

  body .workshop-description .description {
    padding: 18px;
  }
  
  body .agenda-box-container {
    margin-top: 0px;
  }

  body .single-text .game-rules-container {
    width: 310px;
    padding-top: 30px;
    padding-left: 5px;
    padding-bottom: 15px;
  }

  body .various-media .youtube-miniature img {
    width: 280px;
    padding-top: 0px;
  }

  body .various-media .youtube-miniature .description-container {
    width: 280px;
    font-size: 1rem;
  }

  body .various-media .cover-art img {
    width: 250px;
  }

  body .various-media .art-description-container {
    width: 250px;
  }
}


body {
  margin: 0px;
  padding: 0px;
  font-family: "Albura-Medium", 'Gill Sans', sans-serif;
  background-color: var(--background-color);
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--link-color);
}


ul {
  list-style: none;
}

.navigation {
  display: flex;
  justify-content: absolute;
  padding: 30px 2%;
  z-index: 2;
  margin: auto;
  width: 100%;
}

.navigation .menu-icon {
  cursor: pointer;
  float: right;
  padding: 33px 10px;
  z-index: 103;
}

.navigation .litterbox-small-logo a{
  display: flex;
  width: 150px;
  height: 100px;
  justify-content: center;
}

.navigation .menu-icon .nav-icon {
  background-color: var(--text-color);
  display: block;
  height: 2px;
  width: 25px;
  position: relative;
  transition: background 0.2s ease-out;

}

.navigation .menu-icon .nav-icon::before,
.navigation .menu-icon .nav-icon::after {
  background-color: var(--text-color);
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  transition: all ease-out 0.2s;
}

.navigation .menu-icon .nav-icon::before {
  top: 8px;

}

.navigation .menu-icon .nav-icon::after {
  top: -8px;

}

.navigation .menu-btn:checked ~ .menu-icon .nav-icon {
  background-color: transparent;
}

.navigation .menu-btn:checked ~ .menu-icon .nav-icon::before {
  transform: rotate(-45deg);
  top: 0px;
}

.navigation .menu-btn:checked ~ .menu-icon .nav-icon::after {
  transform: rotate(45deg);
  top: 0px;
}

.menu-btn {
  display: none;
}

.menu {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 102;
  background-color: var(--background-color);
  display: none;
  justify-content: center;
  align-items: center;
  animation: fade 0.3s ;
}

.menu li a {
  padding: 12px 20px;
  color: var(--text-color);
  font-size: 2rem;
  margin: 0px 40px;
  letter-spacing: 0.5px;
  transition: all ease 0.3s;
}

.menu li a:hover {
  font-size: 2.3rem;
  opacity: 0.8;
  transition: all ease 0.3s;
}

.navigation .menu-btn:checked ~ .menu {
  display: flex;
}

@keyframes fade {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.nav-contact {
  background-color: var(--text-color);
}

h2 {
  font-family: "Albura-Medium", 'Gill Sans', sans-serif;
  color: var(--text-color);
}

/* BLOG */

.blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0px;
  background-color: var(--background-color);
}

.blog-snippet a {
  color: var(--text-color);
}

.blog-heading h3 a {
  color: var(--text-color);
}

.blog-heading .h3 {
  font-size: 2.4rem;
  color: var(--text-color);
  font-weight: 800;
  line-height: 2.4rem;
  padding-bottom: 3px;
}

.blog-heading .h4 {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.4rem;
  padding-bottom: 8px;
}

.blog-snippet {
  font-size: 1.4rem;
  color: var(--text-color);
  line-height: 1.4rem;
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
}

.blog-box-container {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(290px, 1fr));
  justify-content: left;
  align-items: center;
  margin-top: 50px;
  margin-left: 50px;
  margin: 50px;
  flex-wrap: wrap;
}
.blog-box {
  max-width: 350px;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgb(109,2,2);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.blog-box:hover {
  background-color: var(--background-color);
  box-shadow: 16px 20px 50px rgba(70, 69, 69, 0);
}

.blog-box a {
  color: var(--text-color);
}

.blog-box-img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  overflow: hidden;
  display: flex;
}
.blog-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
}

/* AGENDA */

.agenda {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0px;
  background-color: var(--background-color);
}

.agenda-snippet a {
  color: var(--text-color);
}

.agenda-heading h3 a {
  color: var(--text-color);
}

.agenda-heading .h3 {
  font-size: 2.4rem;
  color: var(--text-color);
  font-weight: 800;
  line-height: 2.4rem;
  padding-bottom: 3px;
}

.agenda-heading .h4 {
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.4rem;
  padding-bottom: 8px;
}

.agenda-snippet {
  font-size: 1.4rem;
  color: var(--text-color);
  line-height: 1.4rem;
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
}

.agenda-box-container {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(290px, 1fr));
  justify-content: left;
  align-items: center;
  margin-top: 50px;
  margin-left: 50px;
  margin: 50px;
  flex-wrap: wrap;
}
.agenda-box {
  max-width: 350px;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgb(109,2,2);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.agenda-box:hover {
  background-color: var(--background-color);
  box-shadow: 16px 20px 50px rgba(70, 69, 69, 0);
}

.agenda-box a {
  color: var(--text-color);
}

.agenda-box-img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  overflow: hidden;
  display: flex;
}
.agenda-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
}

/*NEXT PAGE AND PREVIOUS BUTTONS*/

.next-previous a{
  text-decoration: none;
  display: block;
  padding: 8px 16px;
  font-size: 1.2rem;
  justify-self: center;
}

.next-previous a:hover {
  color: black;
}

.previous {
}

.next {
}

/* WORKSHOPS DESCRIPTIONS */

.workshop-description {
  display: block;
  color: var(--text-color);
  font-size: 1.4rem;
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
  padding-left: 90px;
  padding-top: 70px;
}

.workshop-description .h3 {
  font-size: 2.5rem;
  font-family: "Albura-Medium";
  color: var(--text-color);
  font-weight: 800;
  line-height: 2.4rem;
  padding-bottom: 10px;
}

.workshop-description .h4 {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.4rem;
  padding-bottom: 45px;
}

.workshop-description .playground-banner img {
  width: 900px;
  border-style: dashed;
}

.workshop-description .paragraph {
  padding-bottom: 20px;
}

.workshop-description .paragraph li {
  padding: 0px;
}

.workshop-description .indented {
  padding-left: 60px;
}

.workshop-description .workshop-description-container {
  display: flex;
  width: 900px;
  justify-content: left;
  padding-left: 0px;
  padding-top: 50px;
}

.workshop-description .description {
  display: block;
  padding: 40px 40px;
  color: var(--text-color);
  border-style: dashed;
  justify-content: left;
}

.workshop-description .description .paragraph {
  padding-bottom: 20px;
}

.workshop-description .description .h4 {
  margin-top: 100px;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 50px;
}


/* SINGLE TEXTS */

.single-text {
  display: block;
  color: var(--text-color);
  font-size: 1.4rem;
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
  padding: 100px;
}

.single-text .h3 {
  font-size: 2.5rem;
  font-family: "Albura-Medium";
  color: var(--text-color);
  font-weight: 800;
  line-height: 2.4rem;
  padding-bottom: 10px;
}

.single-text .h4 {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.4rem;
  padding-bottom: 45px;
}


.single-text .paragraph {
  padding-bottom: 20px;
}

.single-text .paragraph li {
  padding: 0px;
}

.single-text .indented {
  padding-left: 60px;
}

.single-text .game-rules-container {
  display: flex;
  width: 1000px;
  justify-content: left;
  padding: 50px;
}


.single-text .game-rules {
  display: block;
  padding: 40px 40px;
  color: var(--text-color);
  border-style: dashed;
  justify-content: left;
}

.single-text .game-rules .paragraph {
  padding-bottom: 20px;
}

.single-text .game-rules .h4 {
  margin-top: 100px;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 50px;
}

.single-text .separator {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* LOGO */

.main-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-art .red-logo {
  display: flex;
  justify-content: center;
  width: 450px;
  height: 450px;
  margin: 40px;
}

.main-art .red-small-logo {
  display: flex;
  width: 270px;
  height: 200px;
  justify-content: left;
}

/* MAIN PAGE TEXT */

.main-art .main-page-text {
  margin: 10px;
  padding-top: 70px;
  display: flex;
  font-size: 1.5rem;
  color:var(--text-color);
  width: 450px;
  height: 500px;
}

/* ABOUT SECTION */

.about {
  display: inline-block;
  padding: 40px 80px;
  max-width: 1000px;
  justify-content: center;
  color: var(--text-color);
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
}

.about .bio-pic img {
  float: left;
  margin: 5px;
  padding-left: 17px;
  padding-right: 10px;

}

.about .litterbox-bio-pic img {
  float: left;
  margin: 5px;
  padding-left: 17px;
  padding-right: 10px;
  width: 50%;
  height: 50%;
}

.about .bio {
}

.about .bio-text .insta-icon img {
  width: 25px;
  height: 25px;
}


.about .bio-text {
  font-size: 1.3rem;
  padding-left: 17px;
}

.manifesto-container {
  display: block;
  margin-top: 180px;
  display: flex;
  width: 1000px;
  justify-content: center;
}

.manifesto {
  max-width: 95%;
  padding: 35px 90px;
  font-size: 1.3rem;
  color: var(--text-color);
  border-style: dashed;
  justify-content: center;
}

/* READ SECTION */

.read {
  display: flex;
  padding: 40px 40px;
  max-width: 1000px;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-color);
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
}

.contact-container {
  margin-top: 100px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.contact {
  display: block;
  max-width: 65%;
  padding: 40px 100px;
  font-size: 2rem;
  color: var(--text-color);
  border-style: dashed;
  justify-content: center;
}

.contact .email {
  color: rgb(145, 4, 4);
}

/* VARIOUS MEDIA */

.various-media {
  display: block;
  color: var(--text-color);
  font-size: 1.3rem;
  font-family: "Albura-Light", 'Gill Sans', sans-serif;
  padding-left: 90px;
  padding-top: 70px;
}

.various-media .youtube-miniature img {
  width: 650px;
  padding: 40px 40px;
}

.various-media .youtube-miniature .description-container {
  border-style: dashed;
  width: 650px;
  padding: 40px 40px;
  text-align: center;
}

.various-media .art-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;

}

.various-media .cover-art img {
  display: inline;
  flex-direction: row;
  width: 400px;
}

.various-media .art-description-container {
  width: 820px;
  border-style: dashed;
  padding: 40px 40px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.various-media .art-description-container .h3 {
  font-size: 2.4rem;
  color: var(--text-color);
  font-weight: 800;
  line-height: 2.4rem;
  padding-bottom: 3px;
  font-family: "Albura-Medium"
}