.intro{
  height: 60vh;
  display: flex;
  position: relative;
}

.intro > .line{
  position: absolute;
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0px;
  background: rgb(255, 255, 255);
  opacity: 0.2;
}

.intro > .col{
  width: 50%;
  margin: 12px;
  margin-top: 0px;
  height: fit-content;
  position: sticky;
  padding-bottom: 20px;
  top: 20px;
  background-color: #000000;
}

.title{
  font-weight: normal;
  font-size: 45px;
  line-height: 0.8;
  margin-block: 0;
}

.nav{
/*   padding: 12px; */
  display: flex;
  position: sticky;
  top: 12px;
  z-index: 999;
}

.nav > a{
  display: block;
  padding: 8px 12px 8px 12px;
  color: black;
  text-decoration: none;
  background-color: #ffffff25;
  backdrop-filter: blur(17px) invert(.2);
  -webkit-backdrop-filter: blur(20px) invert(.2);
  border-radius: 18px;
  margin-left: 12px;
}

.container{
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 30px;
}
body{
  margin: 20px;
  /* background: #efefef; */
  background: #000000;
  color: #efefef;
  font-family: system-ui, sans-serif;
}

.col{
  /* just here for fun */
  box-sizing: border-box;
  width: 100%;
}

.md{
  width: 25%
}

.lg{
  width: 50%;
}

@media (max-width: 727px) {
  body{
    margin: 8px;
  }
  .lg{
    width: 100%;
  }
  .md{
    width: 50%;
  }
  .intro > .col{
    width: 100%;
    min-height: 200px;
    margin: 0px;
    padding: 12px;
  }

  .intro > .col:nth-child(2){
    padding-top: 0px;
  }
  .intro{
    flex-direction: column;
    height: fit-content;
  }
  .line{
    display: none;
  }

  .select{
    padding-top: 10px;
    border-top: 2px solid #ffffff40;
  }
  .container{
    flex-wrap: wrap-reverse;
  }
  .description{
    flex-direction: column;
    gap: 0px !important;
    margin-top: 6px;
  }
  .description > p {
    margin-top: 0px;
  }
  .exp-item{
    grid-template-columns: 1fr 1fr !important;
  }
  .date{
    order: 1 !important;
    /* text-align: left !important; */
  }

  .exp-item > p:nth-of-type(2) {
    grid-column: auto / span 2;
  }

}

.tall{
  background-color: #a2d8e2;
  min-height: 340px
}

.med{
  background: #a3d3b3;
  min-height: 200px;
}

.small{
  background: #d2d1a4;
  min-height: 120px;
}

.thing{
  position: sticky;
  box-sizing: border-box;
  top: 12px;
  border-radius: 4px;
  /* padding: 12px; */
  margin:12px;
}

.thing:nth-child(2){
  top: 48px;
}

.fullheight{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

img{
  width: 100%;
  border-radius: 4px;
}

img + img{
  margin-top: 20px;
}

p{
  margin-block: 0px;
  line-height: 1.5;
  margin-top: 6px;
}

.description{
  display: flex;
  align-items: baseline;
  gap: 6px;
  opacity: 0.6;
}

.description.center{
  width: 100%;
  justify-content: center;
}

h2+p{
  margin-top: 20px;
}

.window{
  /* background-color: #000000; */
  /* background-color: #a2d8e2; */
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  border-radius: 4px;
}

.window > img{
  pointer-events: none;
  object-fit: contain;
  /* max-width: 80vw;
  max-height: 80vh; */
  /* width: auto; */
  max-height: 90vh;
  /* max-width: 90vw; */
  user-select: none;
  border-radius: 4px !important;
}

html{scroll-behavior:smooth}


main{
  transition: all 0.4s ease-in-out;
}
.focus{
  filter: blur(10px) grayscale(1);
  opacity: 0.5;
}

.expo{
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 20px;
  font-size: 1.3rem;
  color: white;
}

.exp-item{
  /* background-color: #ffffff20; */
  border-radius: 4px;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 1.5fr 0.5fr;
  gap: 40px;
  transition: all 0.2s ease;
}

.expo > a {
  border-top: 2px solid #ffffff20;
  padding-top: 20px;
}

.exp-item:hover{
  /* background-color: #ffffffdf; */
  background-color: #ffffff15;
  cursor: pointer !important;
  /* color: black; */
}

.exp-item > p {
  margin: 0px;
}

.exp-item > p:nth-of-type(1) {
  order: 1;
}
.exp-item > p:nth-of-type(2) {
  order: 2;
}
.exp-item > p:nth-of-type(3) {
  order: 3;
}
.exp-item > p:nth-of-type(4) {
  order: 4;
}


.date{
  text-align: right;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}