@viewport {
    width: device-width;
    }
    
    html {
      font-style: Georgia, serif;
        line-height: 1.15;
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    
    body{
	padding: 0;
	margin: 0;
	background-color: #030D17;
		overflow-x: hidden;
}

.welcometext{
	display: flex;
	top: 200px;
	justify-content: center;
	text-align: center;
	align-content: center;
	position: absolute;
	margin-left: 50px;
}

.welcome{
	font: 1.25em/ 1.375 segoe script, comic sans ms, cursive;
	animation: textwelle 3s;
  	color: #fff;
	text-align: left;
	font-size: 50px;
	z-index: 100;
}

@keyframes textwelle {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	70% {
		transform: scale(1.25);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}


header *{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
}

header{
	height: 120px;
	width: 100%;
	position: relative;
	background-color: #030D17;
	box-shadow: 0px 2px 5px rgba(0,0,0,.4);
	position: fixed;
	font: 1.25em/ 1.375 Georgia, serif;
	top: 0;
	z-index: 110;
}

/* CSS */
.button-56 {
  align-items: center;
  background-color: #2dace2;
  border: 2px solid #14668d;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter,sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-56:after {
  background-color: #14668d;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: #ffdeda;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}


main {
	margin: 0 auto;
	padding: 0.875em 0.5em;
	width: 100%;
	color: #fff;
	background: #030D17;
	font: 1.25em/ 1.375 Georgia, serif;

	* + * {
		margin-top: 1.375em;
	}
}

article {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

/* basic article elements styling */
article h2 {
  margin: 0 0 18px 0;
  font-family: "Bebas Neue", cursive;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--title-color);
  transition: color 0.3s ease-out;
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

article img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body {
  padding: 24px;
}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


/************************ 
Generic layout (demo looks)
**************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 48px 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6rem;
  min-height: 100vh;
}

.articles {
  display: grid;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media screen and (max-width: 960px) {
  article {
    container: card/inline-size;
  }
  .article-body p {
    display: none;
  }
}

@container card (min-width: 380px) {
  .article-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .article-body {
    padding-left: 0;
  }
  figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  figure img {
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

.banner {
	margin-left: calc(50% - 50vw);
	width: 100vw;
	height: 62.5vmin;
	min-height: 15em;
	background: linear-gradient(#000, transparent, #000), var(--img) 50% / cover;
	background-attachment: fixed;
	background-blend-mode: multiply;

	&:nth-of-type(1) {
		--img: url("images/20220804_201745.jpg");
	}

	&:nth-of-type(2) {
		--img: url("images/bannernight.jpeg");
	}

	&:nth-of-type(3) {
		--img: url();
	}

	&:nth-of-type(4) {
		--img: url();
	}

	&:nth-of-type(5) {
		--img: url();
	}

	&:nth-of-type(6) {
		--img: url();
	}

	&:nth-of-type(7) {
		--img: url();
	}
}



.tanjalogo{
	width: 120px;
	display: block;
	margin: 0 auto;
	padding-top: 35px;
}
.tanjalogo2{
	width: 120px;
	display: block;
	margin: 0 auto;
	padding-top: 5px;
}
.head{
	position: absolute;
	top: 35px;
	right: 50px;
}
.head .tile{
	display: inline-block;
	height: 50px;
	width: 50px;
	margin-left: 5px;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.head .tile.socialmedia{
	color: #fff;
	font-size: 50px;
	text-align: center;
	line-height: 50px;
	position: relative;
	top: -6px;
}
header.clicked .head .tile.socialmedia{
	color: white;
}
.head .burger{
	margin-left: 25px;
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
}
.meat{
	height: 40px;
	width: 40px;
	position: relative;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
header.clicked .head .burger .meat{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.meat .line{
	height: 4px;
	width: 40px;
	background-color: #fff;
	border-radius: 3px;
	position: absolute;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.meat .line.one{top: 5px; left: 0px;}
.meat .line.two{top: 18px; left: 0px;}
.meat .line.three{top: 31px; left: 0px;}

header.clicked .burger .line{
	background-color: white;
}
header.clicked .burger .line.one{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 18px;
}
header.clicked .burger .line.two{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 18px;
}
header.clicked .burger .line.three{
	opacity: 0;
}
header.clicked .burger:hover .meat{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}








.nav-modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	pointer-events: none;
}
header.clicked .nav-modal{
	visibility: visible;
	opacity: 1;
	pointer-events: initial;
}

.nav-modal .blob{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 0 auto;
	background-color: #030D17;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: all .3s ease-in;
}
header.clicked .nav-modal .blob{
	width: 100vw;
	height: 100vh;
	border-radius: 0px;
}

nav{
	position: fixed;
	left: 20%;
	top: 30%;
	color: white;
}
nav a{
	color: white;
	text-decoration: none;
	font-family: sans-serif;
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
}
nav ul li{
	list-style: none;
	text-align: right;
	border-right: 6px solid white;
	padding-bottom: 10px;
	padding-right: 10px;
	position: relative;
}
nav{
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-webkit-transition-delay: .3s;
	-moz-transition-delay: .3s;
	-o-transition-delay: .3s;
	transition-delay: .3s;
}
header.clicked nav{
	opacity: 1;
}

nav ul li ul{
	position: absolute;
	right: -300px;
	top: -4px;
	display: none;
}
nav ul li ul li{
	border: none;
	padding-bottom: 10;
	padding-left: 10px;
	height: 50px;
	width: 300px;
}
nav ul li ul li a{
	display: block;
	height: 50px;
	font-size: 20px;
	text-align: left;
	padding: 10px;
}
nav ul li.selected ul{
	display: block;
}

nav ul li.notselected a{
	opacity: .5;
}
nav ul li.selected ul li a{
	opacity: 1;
}

.firstsection{
	margin-top: 0px;
	height: 1500px;
	background-color: #030D17;
}

.firstfirstsection{
	margin-top: 900px;
	background-color: #030D17;
}

.secondsection{
	background-color: #030D17;
}

.footersocialicons{
	
	height: 50px;
}

footer { 
	text-align: center;
	width:100%; 
	background-color: #030D17; 
	min-height:250px; 
	padding:10px 0px 25px 0px ;
	z-index: 150;
}

.footer{
	list-style-type:none;
	padding:0px;
	display:table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

.footer li{
	display:inline;
}

.footer li a{ 
	margin:0 12px;
}

.social-footer { 
	display:table; 
	margin:15px auto 0 auto; 
	list-style-type:none;  
}

.social-footer li { 
	padding-left:20px; 
	padding-top:10px; 
	float:left; 
}

.social-footer li a { 
	color:#CCC;  
	padding:8px;
	border-radius:50%;
}

.social-footer li i {  
	width:20px; 
	height:20px; 
	text-align:center;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #cc3366;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  font-family: 'rubic';
}

#myBtn:hover {
  background-color: rgb(0, 0, 0);
}







@media screen and (max-width:820px){
	.tanjalogo{margin-left: 50px;}
	.welcometext{margin-left:50px;}
}
@media screen and (max-width:580px){
	.tanjalogo{width: 130px; padding-top: 30px;}
	nav ul li a{
		font-size: 16px;
	}
	nav ul li ul{
		top: -9px;
	}
	nav ul li ul li{
		height: 40px;
	}
	nav ul li ul li a{
		font-size: 16px;
		height: 40px;
	}
}
@media screen and (max-width:500px){
	.tanjalogo{display: none;}
	.banner {
	margin-left: calc(50% - 50vw);
	width: 100vw;
	height: 62.5vmin;
	min-height: 15em;
	background: linear-gradient(#000, transparent, #000), var(--img) 50% / cover;
	background-attachment: fixed;
	background-blend-mode: multiply;

	&:nth-of-type(1) {
		--img: url("images/abstrakt.jpeg");
	}

	&:nth-of-type(2) {
		--img: url("images/riveroflife.jpeg");
	}

	&:nth-of-type(3) {
		--img: url();
	}

	&:nth-of-type(4) {
		--img: url();
	}

	&:nth-of-type(5) {
		--img: url();
	}

	&:nth-of-type(6) {
		--img: url();
	}

	&:nth-of-type(7) {
		--img: url();
	}
}
}
@media screen and (max-width:320px){
	header .head .tile.socialmedia{
		display: none;
	}
}