*{
    padding: 0;
    margin: 0;
    --border-color: #C42847;
    --div-background: #DE3C4B;
    --background-dark: #a1113c86;
    --background: #db7c916e;
    --div-color:#000022;
    --highlight:#E28413;
    --highlight-second:#FBF5F3;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--div-background);
}
body{
    padding: 2em;
    display: grid;
    grid-template-rows: 100px 50px min-content 50px min-content;
    /* background-color: var(--div-background); */
    background: linear-gradient(145deg, var(--background) 0%, var(--border-color) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h2{
    align-self: flex-end;
}
h2, h3{
    font-family: 'Courier New', Courier, monospace;
}
h3{
    margin-top: 1em;
}
h1, p{
    font-family: monospace;
}
section{
    margin-left: 5em;
    display: flex;
    flex-direction: column;
    height: min-content;
    gap: 1em;
    width: 70%;
    max-width: 850px;
}

div{
    display: flex;
    flex-direction: column;
}
div p{
    text-align: justify;
}
div img{
    margin: 0.5em 0;
}

#lang{
    position: absolute;
    top: 5%;
    right: 10%;
}
#socials{
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 4em;
    margin: 1em;
}

/* µµµµµµµµµµµµµµµµµµµµµµµµµ */

* {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}