

* {
    box-sizing: border-box;
}


/*-------------------*/
/*    STYLE          */   
/*-------------------*/

@font-face { 
    font-family: "mieszkanie9"; 
    src: url(../fonts/mieszkanie9.otf) format("opentype");
    font-style:normal;
    font-weight:normal;
}

@font-face { 
    font-family: "ARRoundGothicPJPMD"; 
    src: url(../fonts/ARRoundGothicPJPMD.ttf) format("truetype");
    font-style:normal;
    font-weight:normal;
}

@font-face { 
    font-family: "KISSMKMK"; 
    src: url(../fonts/KISSMKMK.ttf) format("truetype");
    font-style:normal;
    font-weight:normal;
}

@font-face { 
    font-family: "zawijasy"; 
    src: url(../fonts/zawijasy.otf) format("opentype");
    font-style:normal;
    font-weight:normal;
}

@font-face { 
    font-family: "Plaq108"; 
    src: url(../fonts/Plaq108.otf) format("opentype");
    font-style:normal;
    font-weight:normal;
}

/*
@font-face { 
    font-family: "mieszkanie9"; 
    src: url(fonts/mieszkanie9.otf) format("opentype");
    font-style:normal;
    font-weight:normal;
}
*/

h1{
  font-weight: normal;
  font-family: "mieszkanie9";
  text-align: center;
  font-size:2.5em;
}

h2{
  font-weight: normal;
  font-family: "zawijasy";
  text-align: center;
  font-size:2.5em
}

h3{
  font-weight: normal;
  font-family: "KISSMKMK";
  text-align: center;
  font-size:2.5em
}
  
h4{
  font-weight: normal;
  font-family: "Plaq108";
  text-align: center;
  font-size:2.5em
}
  
body { 
  font-family:"ARRoundGothicPJPMD";
  /*cursor: url("images/exclaimsmall.png"), pointer;  
  cursor: none, auto;*/
  background-color: #D8BFD8;
  font-size: 14px;
  color: #603852;
  min-width: 800px;
  z-index:26;
}
 

.addlace {
  border: 20px solid transparent; 
  border-image: url('decoration/whitelace.png') 34 round;
}

/*Following from https://scripted.neocities.org/text*/

#blinkingtext { /*an ID, not a class*/
  color: #000000;
  animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
  0% {
    color: #000000;
  }

  49% {
    color: #000000;
  }

  60% {
    color: white;
  }

  99% {
    color: white;
  }

  100% {
    color: #000000;
  }
}

/* Shine */
.shine figure {
	position: relative;
}
.shine figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.shine figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.bounce { 
  position: relative;
  top: 0;
  animation: bounce 0.3s ease infinite alternate;
}
 
@keyframes bounce {
  100% {
  top: -.2rem;
  }
}

@keyframes slide {
  0% {
  background-position-x: 0%;
  }
  100% {
  background-position-x: 300vw;
  }
}

/*body {
margin: 0;
overflow: hidden;
color: white;
}*/

.rainbow {
  background-size: 300vw 300vw;
   
  margin: 0;
  /*position: relative;
  text-align: -webkit-center;
  font-size: 3em;*/
  background: repeating-linear-gradient(-45deg, red 0%, yellow 7.14%, #0f0 14.28%, #0ff 21.42%, cyan 28.56%, blue 35.7%, magenta 42.84%, red 50%);
   
  -webkit-animation: 'slide' 15s infinite linear forwards;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.gradienttext{
      background: linear-gradient(to top, #FFFDFE 2%, #FFDB82 100%);
     background-clip: text;
     -webkit-text-fill-color: transparent;
     -webkit-text-stroke-width: 0.5px;
     -webkit-text-stroke-color: #EEA900;
}
                             

/** font stuff **/
/**
body {
    background-color: #D8BFD8;
    font-size: 14px;
    color: #603852;
    min-width: 800px;
    z-index:26;
}
h1, h2 {
    color: #666699;
    font-weight: bold;
    text-align: center;
    z-index:26;
}

h3 {
    text-align: center;
    z-index:26;
}
**/

.special {
    color: #D6939F;
    font-weight: bold;
    z-index:26;
}

                            
.rotate90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate35 {
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
}
.rotateneg35 {
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
}
.fliphorizontal {
  display:flex; 
  -webkit-transform: scaleX(-1); 
  transform: scaleX(-1);
}
.flipvertical {
  display:flex; 
  -webkit-transform: scaleY(-1); 
  transform: scaleY(-1);
}
rotate180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

a:visited, a:link {
    color: #D6939F;
    font-weight: bold;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 40%,rgba(246,199,229,0.7) 50%, rgba(246,199,229,0.7) 70%, rgba(255,255,255,0) 71%);
    text-decoration: underline 3px;
    text-decoration-color: rgb(179,212,251);
    text-decoration-skip: ink;}

a:hover {
    color: cornflowerblue;
    font-weight: bold;
    text-decoration: underline 3px;
}

ul {
    list-style-type: "*";
}


/** SECTIONS **/

#wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 3em;
    justify-content: center;}


/** ELEMENTS **/
.art {
    width: 600px;
    padding: 2em;
    /** background-color: yellow; **/
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 25%;
    max-width: 35%;
    padding: 2em;
    /** background-color: red; **/
}

.navigation .list {
    display: flex;
    flex-direction: column;
}

.navigation .list label {
    padding: 10px 16px;
    margin-bottom: 10px;
    background-color: whitesmoke;
    width: 100%;
    writing-mode: vertical-lr;
    text-align: center;
    transform: rotate(180deg);
}

.tabs_radio, .tabs_content {
    display: none;
}

.tabs_content {
    order: 1;
}

.list label:hover {
    background-color: cornflowerblue;
    color: white;
}

.tabs_label {
    order: 0;
}

.tabs_radio:checked+.tabs_content {
    display: initial;
}

.sec {
    padding: 2em;
    background: url(img/hip-square.png);
    box-shadow: 5px 5px rgba(214, 147, 159, 50%);
    filter: brightness(110%);
    height: 600px;}
}

/** ART SECTION **/

.art .sec {
    max-width: 500px;
}

.art_content, .art_radio {
    display: none;
}

.artimg {
    object-fit: scale-down;
    max-width: 100%;
    overflow: auto;
   
}

.art_radio:checked+.art_content {
    display: initial;

}

.container {
    height: 100%;
    overflow: auto;
    padding: 1em;
    margin: 0.5em;
}

.art .container {
    padding: 0em;
    margin: 0em;
    overflow: auto;
    text-align: center;
    font-family: "Roboto Mono";
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

label img {
    height: 80px;
    width: 80px;
    margin: 1em;
    border: thin dashed brown;
    box-shadow: 5px 5px rgba(214, 147, 159, 50%);
    filter: brightness(90%);
    transition-duration: 0.5s;
}

label img:hover {
    transform: scale(115%);
    transition-duration: 0.5s;
}