@import url('https://cache.lol/css/type.css');

* {
  font-family: "Inter";
  transition: 0.2s;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  font-size: 10px;
  letter-spacing: 0.5px;

  
}

body, html {
  
  color: #0A0A0A;
  line-height: 2.24rem;  

}

.flier {
	pointer-events: none;
}

.flier > * {
/* Adjust animation duration to change the element’s speed */
        animation: fly 50s linear infinite;
        pointer-events: none !important;
	top: 0;
	left: 0;
	transform: translateX(-120%) translateY(-120%) rotateZ(0);
	position: fixed;
	animation-delay: 1s;
	z-index: 999999;
}

 /* Keyframe values control where the element will begin
    and end its trajectory across the screen. Each rule
    represents a path the element follows across the screen. */


@keyframes fly {
  /* Enter from left, low altitude */
  0% {
    transform: translateX(-200%) translateY(70vh) rotate(-5deg);
  }

  /* Climbing */
  20% {
    transform: translateX(10vw) translateY(30vh) rotate(8deg);
  }

  /* Level flight */
  40% {
    transform: translateX(35vw) translateY(25vh) rotate(0deg);
  }

  /* Descending */
  60% {
    transform: translateX(60vw) translateY(55vh) rotate(-8deg);
  }

  /* Small climb again */
  80% {
    transform: translateX(85vw) translateY(35vh) rotate(6deg);
  }

  /* Exit to the right */
  100% {
    transform: translateX(120vw) translateY(45vh) rotate(0deg);
  }
}


:root[color-mode="light"] {
	--foreground-color: #343a40;
	--background-color: #fff;
	--background-color-darker: #ddd;
	--yellow-color: #ffec99;
	--blue-color: #a5d8ff;
    --text-color: #0A0A0A;
    --link-color: #505050;
}

/* Dark Mode */
:root[color-mode="dark"] {
	--foreground-color: #ddd;
	--background-color: #343a40;
    --img-background-color: #fff;
	--background-color-darker: #212529;
	--yellow-color: #fab005;
	--blue-color: #1c7ed6;
    --text-color: #eee;
    --link-color: #cccccc;
}

:root[color-mode="light"] .light--hidden {
	display: none;
}

:root[color-mode="dark"] .dark--hidden {
	display: none;
}

body{
  cursor:url('assets/cursor-def.png') 16 16, auto;
  margin:0;

 /* overflow: hidden;*/

}

body, button {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	background: var(--background-color);
	color: var(--foreground-color);
	font: 400 var(--fluid-0) / 1.6 Lato, sans-serif;
    border: transparent;
}

button{
    cursor: url('assets/cursor-hap.png') 16 16, auto;
}

.body-container{
  padding:0 4rem;
  position: relative;
  transition: opacity 0.4s ease-in-out, transform 1s ease-in-out;
}

#playground-container{
  padding: 0 10rem;
}

.locked body, .locked-html{
  overflow: hidden !important;
}

a {
    text-decoration: none;
    color:#0A0A0A;
    display: inline-block;  
}

img, video {
  display:block;
  opacity: 1;
  border-radius: 10px;
  
}

/* Standard font size */
h3, h5, h7, p {
  font-weight: 350;
}

h3{
  font-size: 18px;
  line-height: 1.2;
}

/*Section headings*/
h4{
  font-weight: 550;
  font-size: 32px;
  margin: 10rem 0 5rem 0;
}

.subheading{
  margin: 5rem 0 2rem 0;
}

/*Category & description + sub description*/
h5, h6, p{
  font-size: 18px;
  line-height: 1.6
}

h6{
  font-weight: 600;

}

/*Footer Fontsize*/
h7{ 
  font-size: 16px;
}

a:hover, a:active{
  cursor: url('assets/cursor-hap.png') 16 16, auto;
}

#soon:hover {
  cursor: url('assets/cursor-so.png') 16 16, auto;
}


/* Navigation bar */
nav a{
  font-family: sans-serif;
  font-size: 2.2rem;
}

.nav-bar {
    left: 50%;
    transform: translate(-50%, 0);
    position: fixed; /* Set the navbar to fixed position */
    top:0;
    padding-top: 2.56rem;
    width: calc(100% - 8rem); /* subtract added removed space from body padding page */
    z-index: 100; 
  }

  /* Links inside the navbar */

  .nav-bar-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-bar-links ul{
    list-style: none; 
  }

  .nav-bar-links ul li{
    display: inline-block;
    padding-left: 3rem;
    animation: fade-down 0.5s 0.4s backwards;

  }
  
  /* Change background on mouse-over */

  .nav-bar a:hover, .nav-bar a:active, .nav-bar svg:hover, .nav-bar svg:active {
    color: #075BFF;
    fill:#075BFF !important;
  }


  .nav-bar svg{
    fill:black;
    animation: fade-down 0.5s 0.4s backwards;
  }

  i{
    font-size: 2.2rem;
    cursor: url('assets/cursor-hap.png') 16 16, auto;
  }

/* FOOTER */

footer{
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*HOME PAGE*/
 

.intro-text{
  padding: 13rem 0;
  display: block;
}

.intro-paragraph{
  text-align: left;
  width:fit-content;
  font-family:sans-serif;
  font-size: 2.8rem;
}

.intro-wavy{
  display: inline-block;
  width: fit-content;
}

.letter{
  font-family:sans-serif;
  letter-spacing: 0;
  display: inline-block;
  padding: 10px 0;
  transition: transform 0.1s; /* Ensure animation runs smoothly */
  animation: fade-up 0.5s 0.4s backwards;

}
  .letter:hover {
    transform:translateY(10px); /* Add animation on hover */
  }

  .word{
    display:inline-flex;
    white-space: nowrap;
  }

.intro-text p{
  font-family: sans-serif;
  letter-spacing: 0;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 4;
  animation: fade-up 0.5s 0.4s backwards;
}


/*Main landing page gif grid*/

@keyframes fade-down{
  0%{
    opacity:0;
    transform: translateY(-30px) scale(0.9);
  }

  100%{
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

@keyframes fade-up{
  0%{
    opacity:0;
    transform: translateY(30px) scale(0.9);
  }

  100%{
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

/* nori */

.nori-nest-col{
  height: 33%;
  margin:0;
  padding: 0;
}

.nori-col img{
  object-fit: cover;
}

.nori-body .container2{
  width: 75%;
  margin: auto
}

.nori-col1{
  gap: 4px;
  flex-direction: row; 
}

.nori-col1 img {
  height: 100%;
}

.nori-col1 video{
  height: 100%;
  object-fit: cover;
}

.nori-body .heading img{
  max-width: 200px;
  min-width: 150px;
}

.nori-body .flickr-container{
  width: 75%;
}


/*picky*/


.p-container {
  display: flex;
  flex-direction: column;
  padding-top: 18rem;
  width: 916px;
}

.p-container .flicker-video-container{
  margin: 5rem 0;
  padding: 0;
  width: 100%;
}

.picky-grid{
  flex-direction: row;
  width: 100%;
  gap: 10px;
  margin: 10rem 0 10rem 0;
}

.picky-grid img, .picky-grid video {
  width: 100%;
  border-radius: 0;
}

.picky-col{
  width:32%;
}


/* preloader page*/

.loader{
  min-height: 100vh;
  width: 100vw;
  background: white;
  padding:0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.5s ease-in-out; /* Fade-out transition */
  z-index: 2000;
}

video.me-blink, img.imgDefault, img.me-close-gif{
  max-width: 250px;
}

/* work gallery grid*/

.work-grid {
  padding: 0;
}

/*half-grid = flickr, play-row = playground*/
.row, .genta-row, .half-grid, .play-row, .flickr-feature-grid, .bz-grid, .row-1o1d, .picky-grid, .category, .nori-col1 {
  display: flex;
  flex-wrap: wrap;
}

.row, .play-row {
  padding: 3.2rem 0;
  justify-content: space-between;
}


.column {
  flex:49%;
  max-width: 49%;
  display: block;
}

.column img, .column video, .play-column img {
  width: 100%;
}

.col-img {
  margin: 0 0 2rem 0;
  border-radius: 10px;
  box-sizing: border-box;
  border: 0.1px solid white;
  display: flex;
}

.col-img{
  position: relative;
}

.top-img, .top-img2{
  position: absolute;
  top:0;
  left:0;
}

.top-img2{
  left:15%;
}

.col-img img:hover{
  opacity: 0;
  transition: all 300ms ease-in-out;
}

.play-container img:hover{
  opacity: 0;
  transition: all 200ms ease-in-out;
}

.caption-1, .caption-2 { 
  float: left; /* Float the containers to the left */
  width: 100%; /* Adjust width to fit their content */
  position: relative;
  display: flex;
  
}

.caption-1 img, .caption-2 img {
  display: block; /* Ensure the images behave as block elements */
  margin: 0; /* Remove any default margin */
  padding:0;
  
}

.caption-2{
  margin: 2rem 0 10rem 0;
  height: 4.5rem;
  opacity: 0;
}

.caption-2 img{
  height:100%;
  width: auto;
}

#captionLessMargin2{
  margin: 2rem 0 0 0;
}

#captionLessMargin1{
  margin: 2rem 0 0 0;
}

.caption-1 img{
  padding: 0;
  height: 100%;
  width: auto;
  object-fit: contain;  
}


.caption-1{
  height: 4.5rem;
}

/* playground*/


.play-row{
  padding: 0 0 13rem 0;
}

.play-row a{
  display: block;
}

.play-column, .play-caption, .play-column2, .play-caption2{
  flex: 40%;
  display: flex;
  justify-content: center;
}

.play-column2, .play-caption2, .play-column2 img, .flickr-col1, .flickr-col2, .me-icons, .me-text, .loader, .p-container, .intro-paragraph, .slide-selector{
  margin: auto;
}

.play-caption p, .play-caption2 p{
  font-family: sans-serif;
  font-size: 2rem;
}

.play-caption, .play-caption2 {
  padding-top: 5rem;
  opacity: 0;
}

.play-container{
  text-align: center;
  display: block;
  position: relative;
}

.play-column2 img{
  width: 70%;
}


/*PROJECT PAGE*/
.category{
  flex-direction: row;
  width: 100%;
  gap: 15px;
}

.description{
  margin-bottom: 50px;
  margin-top: 40px;

}

.round-rect{
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  white-space: nowrap;
  padding: 15px;  
  height: 46px;
  border-radius: 30px;
  border: 1.5px solid black;
}

.heading {
  align-self: flex-start;
  margin-bottom: 40px;
}

.line{
  width: 100%;
  height: 1px;
  background-color: black;
}


/* Flicker */
.flickr-container {
  display: flex;
  height: 100vh;
  width: 70%;
  margin: 0 auto;
}

.flicker-video-container{
  padding-bottom: 2rem;
}

.flickr-grid{
  display: flex;
  flex-direction: row;
  column-gap: 10%;
}

.flickr-col1, .flickr-col2{
  gap: 20px;
  min-width:0;
}

#agfom-col1{
  flex: 1.5;
}

#agfom-col2, .flickr-col2, .featureColumn1, .featureColumn3, .genta-col{
  flex: 1;
}

#agfom-container, .flicker-text{
  width: 80%;
}

.flickr-col1{
  flex: 1.17
}

.flickr-col2 video{
  height: 100%;
  min-width: 25.6rem;
  max-width: 350px;
  height:750px;
}

.flicker-video-container{
  margin: 0 12.8rem;
  padding:0;
  display: flex;
  width: calc(100% - 25.6rem); /* Account for left and right padding */
  
}


.flicker-video-container iframe{
  width:100%;
  height: 100%;
  aspect-ratio: 16/9;
  
}

.container2{
  margin: 5rem 0 0 20rem; 
  width: 70%; 
}

.flickr-column{
  flex: 30%;
  gap:20px
}

.flicker-text{
  margin: 5rem 0;
}

.half-grid{
  gap: 20px;
}

.half-column{
  flex: 45%;
}


.flickr-feature-grid{
  gap: 6.4rem;
  margin: 9.6rem 0;
}

.featureColumn2{
  flex: 1.92;
}

.featureColumn4{
  flex: 1.18;
  margin:0;

}

.featureColumn4 img{
  margin:0;
}
.auto-push-slideshow{  
  overflow: hidden;

}

.auto-push-slide-wrapper{
  display: flex;
  animation: slide 15s infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0);
  }
  35% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  55% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-200%);
  }
  85% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}


/* me*/
.me-container{
  width: 100%;
  padding: 15rem 0 2rem 0;
}

.me-icons{
  display: flex;
  width: 50%;
  gap: 2rem;
  justify-content: center;
}

.me-icons img{
  display: flex;
  background-color: var(--img-background-color);
}

.me-icons img:hover{
  transform: rotate(25deg);
  transition: .5s;
}

.me-text{
  padding-top: 6rem;
  width: 600px;
}

.me-text p{
  font-weight: 200;
  font-size: 20px;
  line-height: 1.7;
}

.small-links{
  display: flex;
}

.small-links svg{
  position: relative;
  margin-top: 11px;
  margin-left: 6px;
}

.small-links2 a{
  display: block;
  color: var(--link-color);
}



/*Bzword*/

.bz-grid{
  gap: 20px;
  margin: 0 0 10% 0;
  justify-content: flex-start;

}


.bz-grid video{
 width:100%;
 margin-bottom: 20px;}

.bz-column{
  padding: 0;
  display: block;
}

.bz-column1{
  flex:1;   
}

.bz-column2{
  flex:1.35;
}

.bz-grid2{
  display: flex;
  width: 100%;
  gap: 15px;
  justify-content: flex-start;
}

.bz-grid2 video{
  max-width: 331px;
  min-width: 120px;
}

.flickerSlide{
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* hide scroll box in Firefox */
  -ms-overflow-style: none;  /* hide scroll box in Internet Explorer 10+ */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 10px;
}

.flickerSlide{
  aspect-ratio: 1/1;
  overflow-y: hidden;
  justify-content: flex-start;
  filter: drop-shadow(0 -2mm 4mm rgb(2,2,2, 0.1));

}

.flickerSlide :-webkit-scrollbar { /* WebKit */
  width: 0;
  height: 0;
}

.flickerSlide img{
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  object-fit: cover;
  margin:0;
}

.slide-selector{
  text-align: center;
}
.selector{
  width: 17px;
  height: 17px;
  display: inline-block;
  margin: 3.2rem 0.8rem;
  border-radius: 50%;
  opacity: 0.2;
  background-color: #535353;
  transition: opacity ease 250ms;

}

.active, .selector:hover {
  opacity: 1;
}

.genta-grid{
    margin: 10rem auto;
}

.genta-row{
  flex-direction: row;
  width:100%;
  margin-bottom: 20px;
  gap: 20px;
  text-align: center;
}

.genta-double-col {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;

}

.genta-row2{
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.genta-col{
  width: 45%;
}

.genta-col video {
  width: 100%;
}

.genta-double-col{
  flex:2;
}

.genta-prototype{  
  max-width: 400px;
  min-width: 340px;
}


/*1O1D* and buzzword */

.container {
  display: flex;
  flex-direction: column;
  margin: 12.8rem 19rem 0 19rem;
}

.profile{
  display: flex;
  flex-direction: row;
  gap: 4rem;
  margin: 30px 0;
  padding:0;
}

.profile img{
  max-width: 130px;
  min-width: 88px;
}

.bio{
  align-self: center;
}

.insta-section{
  padding: 15px 100px;
  display: flex;
  flex-direction: row;
}

.insta-section-text{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  
}

.row-1o1d{
 gap: 1px;
}

.column-1o1d{
  flex: 30%;
  max-width: 33%;
}

.column-1o1d img, .column-1o1d video {
  margin-bottom: 1px;
  width:100%;
  border-radius: 0;
}

@media only screen and (max-width: 1420px) {
  .caption-2{
    height: 4rem;
  }

.intro-paragraph span, .intro-text p{
  font-size: 2.3rem;
}

#agfom-rect{
  font-size: 18px;
}
}

@media only screen and (max-width: 1320px) {
  .caption-2{
    margin: 1.3rem 0 6rem 0;
  }

  #agfom-rect{
    font-size: 15px;
  }
 
}

@media only screen and (max-width: 1250px) {
  .caption-1{
    height: 4rem;
  }
  .caption-2{
    height: 3.5rem;
  }

  .play-row{
    padding: 0 0 10rem 0;
  }
  .play-caption, .play-caption2 {
    padding-top: 2rem;
    opacity: 0;
  }

  #agfom-container{
    width: 90%;
  }

  .nori-body .flickr-col1{
    flex: 1.7;
  }

  .nori-body .description{
    margin-bottom: 0;
  }

  .nori-body .heading img{
    max-width: 150px;
  }

 
}

@media only screen and (max-width: 1100px) {

  .heading{
    margin: 0 0 30px 0;
  }
  h5{
    font-size: 16px;
  }

  #agfom-rect{
    font-size: 14px;
  }

  .round-rect{
    height: 40px;
    padding: 10px;
  }

  .intro-paragraph span, .intro-text p{
    font-size: 2rem;
  }
  .intro-text{
    padding: 9rem 2rem;
  }
  .play-caption p, .play-caption2 p{
    font-size: 1.8rem;
  }
  .play-row{
    padding: 0 0 8rem 0;
  }
}

@media only screen and (max-width: 1010px) {

  .container {
    margin: 12.8rem 12rem 0 12rem;
}
.intro-paragraph span, .intro-text p{
  font-size: 1.8rem;
}

.play-row{
  padding: 0 0 5rem 0;
}

  #agfom-container{
    width: 95%;
  }

  .container2{
    margin: 5rem 0 0 20rem; 
    width: 70%; 
  }

  #agfom-container2{
    margin: 5rem 0 0 10rem;  }

  .p-container{
    width: 700px;
  }

}

@media only screen and (max-width: 910px) {
  .row, .play-row, #agfom-grid, .genta-row, .nori-body .flickr-grid{
    flex-direction: column;
  }

  .genta-col{
    width: 100%;
  }

  .play-row{
    padding: 0;  
  }

  .play-column, .play-column2{
    flex: 100%;
    max-width: 100%;
    padding-bottom: 5rem;
  }

  .top-img2{
    position: absolute;
    top:0;
    left:0;
  }

  .play-column2 img{
    width: 100%;
  }


  .p-container .heading{
    width: 50%;
  }

  .picky-grid{
    margin: 5rem 0;
  }

  #agfom-container{
    width: 100%;
    padding: 15rem 0 10rem 0;
  }

  .nori-body .flickr-container{
    width: 80%;
    height: auto;
    padding-top: 10rem;

  }

  .nori-body .flickr-grid{
    gap: 50px;
  }

  .nori-body .flickr-col1{
    flex: 1.4;
  }

  .nori-body .heading img{
    max-width: 100px;
  }

  #agfom-rect{
    font-size: 18px;
  }

  .heading{
    width: 70%;
  }


  .column {
    flex: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 0;}

  .intro-text{
      padding: 14rem 4rem 8rem 4rem;
    }

  .intro-text p{
    font-size: 2.5rem;
  }
    
  
  .intro-paragraph span{
      font-size: 2.5rem;
      line-height: 3;
    }

  .caption-1{
    height: 5rem;
  }

  .caption-1 img{
    margin: 0 auto;
  }
  .caption-2{
    height: 5rem;
    margin: 2rem 0 10rem 0;
  }

  #captionLessMargin1 {
    margin: 2rem 0 10rem 0;
  }

  .caption-1, .caption-2{
    justify-content: center;
  }
  p{
    font-size: 20px;
  }
  }

@media only screen and (max-width: 820px) {
  h5{
    font-size: 14px;
  }

  .category{
    gap: 10px;
  }
  .round-rect{
    height: 32px;
    padding: 0 10px;
  }
  .flickr-container{
    width: 90%;
  }
}

@media only screen and (max-width: 730px){
  .body-container{
    padding:20rem 3rem 0 3rem;
  }

  .me-container{
    padding:0 0 2rem 0;
  }

  #playground-container{
    padding:15rem 2.5rem 0 2.5rem;
  }

  .container {
    margin: 0 4rem;
  }

  .p-container{
    width: 100%;
    padding-top: 0;
  }

  .picky-grid{
    gap: 3px;
  }

  #agfom{
    padding: 0rem 3rem;
  }

  .me-text{
    width: 90%;
  }

  .flickr-container{
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
  }

  #agfom-body {
    width: 100%;
    padding: 0 3rem;
  }

  .intro-text{
    padding: 0 1rem 9rem 1rem;
  }
  

  .intro-paragraph span{
    font-size: 2.5rem;
    line-height: 3;
  }

  .intro-text p{
    font-size: 2.5rem;
  }

  .caption-1{
    height: 4.5rem;
  }
  .caption-2{
    height: 4rem;
    margin: 1.5rem 0 8rem 0;
  }

  #captionLessMargin1{
    margin: 1rem 0 8rem 0;
  }

  
  .flickr-grid{
    flex-direction: column;
  }
  .flicker-video-container{
    margin: 0px;
    width: 100%;
  }

  .nav-bar {
    padding-top: 5rem;
    width: calc(100% - 6rem);
  }
  .container2{
    margin:8rem 0 0 0;
    width: 100%;
  }

  #agfom-container2{
    margin: 8rem 0 0 0;  }

  .landing-page-wrapper{
    width: calc(100% - 6rem);
  }

  h5{
    font-size: 15px;
  }

  #agfom-rect{
    font-size: 15px;
  }
}

@media only screen and (max-width: 700px) {
  .caption-1{
    height: 4rem;
  }
  .caption-2{
    height: 3.5rem;
    margin: 1rem 0 8rem 0;
  }

  #captionLessMargin1{
    margin: 1rem 0 8rem 0;
  }

  footer{
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intro-paragraph span{
    font-size: 2rem;
    line-height: 3;
  }

  .intro-text p{
    font-size: 2rem;
  }

  .bz-grid{
    margin-bottom: 5rem;
  }

  .work-grid {
    padding:0;
  }
  #captionLessMargin2 {
    margin: 1rem 0 0 0;
  }

  h4{
    font-size: 24px;
    }

  p{
    font-size: 16px;
  }

  .heading{
    width: 80%;
  }

   .genta-prototype{
    max-width: 100%;
  }

}

@media only screen and (max-width: 510px) {
  .bz-grid{
    margin-bottom: 5rem;
    gap: 10px;
  }

  .flicker-text{
    width: 100%;
  }

  .caption-1{
    height: 4.5rem;
  }
  .caption-2{
    height: 3.2rem;
    margin: 1rem 0 6rem 0;
  }
  #captionLessMargin1{
    margin: 1rem 0 6rem 0;
  }

}

@media only screen and (max-width: 425px) {

  .body-container{
    padding:18rem 2.5rem 0 2.5rem;
  }

  .container {
    margin: 0;
    padding: 0;
  }

  .me-text{
    width: 100%;
  }

  #agfom{
    padding: 0rem 2.5rem;
  }

  .bio h3{
    line-height: 2;
  }

  .intro-paragraph span{
    font-size: 1.7rem;
    line-height: 3;
  }

  .intro-text p{
    font-size: 1.7rem;
  }

  #playground-container{
    padding:15rem 2.5rem 0 2.5rem;
  }

  h4{
  font-size: 24px;
  line-height: 1.7;
  }

  h6, p{
  font-size: 18px;
  line-height: 1.6
  }
  h6{
    font-weight: 600;
  }

  h7{
    font-size: 13px;
  }

  .landing-page-wrapper{
    grid-template-columns: 5% 90% 5%;
  }

  .caption-1{
    height: 3rem;
  }
  .caption-2{
    height: 2.7rem;
  }
  .column {
    padding:0;}

  .nav-bar {
    width: calc(100% - 5rem);
}

.nori-body .heading img{
  min-width: 50px;
}
.nori-body .flickr-container{
  width: 100%;
  padding: 10rem 2.5rem 0 2.5rem;
}

.nori-body .container2{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
  .p-container .heading {
    width: 60%;
  }

  .profile{
    flex-direction: column;
    gap: 0px;
  }

  .profile img{
    width: 88px;
  }
  .bio{
    align-self: flex-start;
  }

  .insta-section {
    padding: 15px 30px;

}
  .p-container .flicker-video-container{
    margin:0;
  }
#genta-heading{
  width: 112px;
}

  .nori-body .container2{
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .body-container{
    padding:18rem 2.5rem 0 2.5rem;
  }

  .genta-prototype{
    max-width: 300px;
    min-width: 200px;
  }

}
