/*---------------------------------------------------SET-UP-----------------------------------------------------------------------*/
a {
    text-decoration: none;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    background: no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
/*---------------------------------------------------FADING-----------------------------------------------------------------------*/      
.carréblanc {
    top:-25vh;
    left:-25vw;
    position: fixed;
    margin: 0;
    padding: 0;
    width: 150vw;
    height: 150vh;
    background-color: white;
    animation-delay: 1s;
    animation: fadeout ease-in-out 1.5s forwards;
    pointer-events: none;
    z-index: 10;
}

.carrétransparent {
    top:-25vh;
    left:-25vw;
    position: fixed;
    margin: 0;
    padding: 0;
    width: 150vw;
    height: 150vh;
    background-color: transparent;
    pointer-events: none;
    z-index: 10;
}

@keyframes fadeout {
    to {
        background-color: transparent;
    }
}

.fadein {
    animation: fadein ease-in-out 1.5s forwards;
}

@keyframes fadein {
    to {
        background-color: white;
    }
}

/*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN>1250.1px..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (min-width: 1250.1px) and (min-aspect-ratio: 15/10) {

    .grid {
        transform: translate(0, 60px);
        width: 92vw;
        margin: 0 auto;
        margin-bottom: 50px;
        /*border: 1px solid rgb(255, 0, 0);*/
        display: grid;
        grid-template-columns: repeat(auto-fill, 27vw);
        grid-template-rows: repeat(auto-fill, 27vw);
        grid-row-gap: 2vw;
        grid-column-gap: 5vw;
        justify-content: right;
    }
    .griditem {
      height: 27vw;
      width: 27vw;
      /*border: 1px solid rgb(255, 0, 0);*/
    }
    
    .gridimg {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

/*-------------------------MENU-------------------------*/  
.title {
    width: fit-content;
    padding-bottom: 8px;
    position: fixed;
    transition: all 0.9s ease-in-out;
    z-index:3;
}

.menu {
    position: relative;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    font-size: 40px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
}

.menu span {
    background-color: rgb(195, 195, 195);
    transition: all 0.9s ease-in-out;
}

.noindex {
    display: block;
}

/*HOVER*/
.menu:hover {
    filter: blur(3px);
}

.menu span:hover {
    filter: blur(3px);
    cursor: pointer;
}

.menu.non:hover {
    filter: none;
}

.menu.non span:hover {
    filter: none;
}
/*-------------------------DIV content-------------------------*/
.item {
    width:fit-content;
    height: fit-content;
    vertical-align:middle;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding-top: 2.8vh;
    padding-bottom: 4vh;
    z-index:1;
}
/*-------------------------VISUAL content-------------------------*/
img {
    margin: auto;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
}

video {
    background-color: black;
    margin: auto;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
}

.play1 {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-15vh, -56vh);
    height: 20vh;
    width: 30vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
    filter: blur(0px);
}

.play2 {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-15vh, -45vh);
    height: 20vh;
    width: 30vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
    filter: blur(0px);
}

.blur {
    filter: blur(3px);
}

.portrait1 {
    height: auto;
    width: 92vh;
}
.portrait2 {
    height: 92vh;
    width: auto;
}
.portrait3 {
    height: auto;
    width: 40vh;
}

.landscape1 {
    height: 92vh;
    width: auto;
}
.landscape2 {
    height: 70vh;
    width: auto;
}

.first.portrait1 {
    margin-top: 0;
}
.first.landscape1 {
    margin-top: 0;
}
.first.landscape2 {
    margin-top: 12vh;
}

/*BEHAVIOR*/
@keyframes changewidth {
    from {
        transform: rotate(-2.5deg);
    }
    to {
        transform: rotate(2.5deg);
    }
}

.turnshine {
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: changewidth ease-in-out 3s alternate infinite;
    animation-play-state: running;
}

.turnshinepaused {
    animation-play-state: paused;
    filter: blur(0px);
}

.turnshine:hover {
    cursor: pointer;
}

.toblur:hover {
    filter: blur(3px);
}

/*ONCLICK*/
.portrait1.scaled {
    width: 85vh;
}
.portrait2.scaled {
    height: 85vh;
}

.landscape1.scaled {
    height: 85vh;
}
.landscape2.scaled {
    height: 65vh;
}
/*-------------------------COMMENTS-------------------------*/
h6 {
    position : absolute;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    padding: 1.5vh;
    font-size: 18px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
    opacity: 0;
    cursor: default;
}

h6 span {
    background-color: rgb(202, 202, 202);
    transition: all 0.9s ease-in-out;
}

h6.appear {
    opacity:1
}

h6.appear span{
    opacity:1
}
/*-------------------------DESCRIPTION-------------------------*/
#parent_div {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease-in-out;
    z-index: 6;
    height: fit-content;
}

.stretchingonphone {
    width: 10px;
    height: 0.1vh;
    opacity: 0;
    pointer-events: none;
    transition: all 0.9s ease-in-out;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: whitesmoke;
    filter: blur(30px);            
    transition: all 0.9s ease-in-out;
}

p {
    margin: 70px;
    padding: 0;
    position: relative;
    font-size: 18px;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    color:rgb(76, 0, 255);
    filter: blur(0px);
    transition: all 0.9s ease-in-out;
}

p:hover {
    filter: blur(3px);
    cursor: pointer;
}

.disappear {
    opacity: 0;
    pointer-events: none;
}

.disappearDEF {
    opacity: 0;
    pointer-events: none;
}
/*-------------------------BOTTOM NOTE-------------------------*/
.note {
    text-align: center;
    padding-top: 4vh;
    width: 90vw;
    margin: auto;
}

.notesmall{
    position: relative;  
    transform: translate(0, 0);
}

#bottomnote {
    position: relative;
}
/*-------------------------ARCHIVE-------------------------*/
#alt_parent_div {
    position: relative;
    width: fit-content; 
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 2.8vh;
    padding-bottom: 4vh;
    transition: all 0.9s ease-in-out;
    z-index: 6;
}

h5 {
    padding: 0;
    margin: 10px;
    position: relative;
    font-size: 18px;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    color:rgb(76, 0, 255);
    filter: blur(0px);
    transition: all 0.9s ease-in-out;
}

h5:hover {
    filter: blur(3px);
}

#alt_parent_div:hover {
    cursor: pointer;
}
/*-------------------------CONTACT-------------------------*/
#parent_div_butnodisappear {
    position: fixed;
    width: 770px; 
    height: 270px; 
    padding: 60px; 
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease-in-out;
    z-index: 6;
}

.contact {
    position: relative;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    padding-top: 90px;
    font-size: 40px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
}
/*-------------------------DOWNLOAD-------------------------*/
.check {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-8vh, -24vh);
    height: 20vh;
    width: 15vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
}

}

/*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN<1250px..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (max-width: 1250px) and (min-width: 980.1px) {

    .grid {
        transform: translate(0, 60px);
        width: 92vw;
        margin: 0 auto;
        /*border: 1px solid rgb(255, 0, 0);*/
        display: grid;
        grid-template-columns: repeat(auto-fill, 40vw);
        grid-template-rows: repeat(auto-fill, 40vw);
        grid-row-gap: 2vw;
        grid-column-gap: 5vw;
        justify-content: right;
    }
    .griditem {
      height: 40vw;
      width: 40vw;
      /*border: 1px solid rgb(255, 0, 0);*/
    }
    
    .gridimg {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

/*-------------------------MENU-------------------------*/  
.title {
    width: fit-content;
    padding-bottom: 8px;
    position: fixed;
    transition: all 0.9s ease-in-out;
    z-index:3;
}

.menu {
    position: relative;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    font-size: 40px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
}

.menu span {
    background-color: rgb(195, 195, 195);
    transition: all 0.9s ease-in-out;
}

.noindex {
    display: block;
}

/*HOVER*/
.menu:hover {
    filter: blur(3px);
}

.menu span:hover {
    filter: blur(3px);
    cursor: pointer;
}

.menu.non:hover {
    filter: none;
}

.menu.non span:hover {
    filter: none;
}
/*-------------------------DIV content-------------------------*/
.item {
    width:fit-content;
    height: fit-content;
    vertical-align:middle;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding-top: 2.8vh;
    padding-bottom: 4vh;
    z-index:1;
}
/*-------------------------VISUAL content-------------------------*/
img {
    margin: auto;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
}

video {
    background-color: black;
    margin: auto;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
}

.play1 {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-13.5vh, -45vh);
    height: 18vh;
    width: 27vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
    filter: blur(0px);
}

.play2 {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-15vh, -45vh);
    height: 20vh;
    width: 30vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
    filter: blur(0px);
}

.blur {
    filter: blur(3px);
}

.portrait1 {
    height: auto;
    width: 70vh;
}
.portrait2 {
    height: 92vh;
    width: auto;
}
.portrait3 {
    height: auto;
    width: 35vh;
}

.landscape1 {
    height: 70vh;
    width: auto;
}
.landscape2 {
    height: 70vh;
    width: auto;
}

.first.portrait1 {
    margin-top: 4vh;
}
.first.landscape1 {
    margin-top: 10vh;
}
.first.landscape2 {
    margin-top: 12vh;
}

/*BEHAVIOR*/
@keyframes changewidth {
    from {
        transform: rotate(-2.5deg);
    }
    to {
        transform: rotate(2.5deg);
    }
}

.turnshine {
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: changewidth ease-in-out 3s alternate infinite;
    animation-play-state: running;
}

.turnshinepaused {
    animation-play-state: paused;
    filter: blur(0px);
}

.turnshine:hover {
    cursor: pointer;
}

.toblur:hover {
    filter: blur(3px);
}

/*ONCLICK*/
.portrait1.scaled {
    width: 65vh;
}
.portrait2.scaled {
    height: 85vh;
}

.landscape1.scaled {
    height: 65vh;
}
.landscape2.scaled {
    height: 65vh;
}
/*-------------------------COMMENTS-------------------------*/
h6 {
    position : absolute;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    padding: 1.5vh;
    font-size: 18px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
    opacity: 0;
    cursor: default;
}

h6 span {
    background-color: rgb(202, 202, 202);
    transition: all 0.9s ease-in-out;
}

h6.appear {
    opacity:1
}

h6.appear span{
    opacity:1
}
/*-------------------------DESCRIPTION-------------------------*/
#parent_div {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease-in-out;
    z-index: 6;
    max-width: 95vw;
    height: fit-content;
}

.stretchingonphone {
    width: 10px;
    height: 0.1vh;
    opacity: 0;
    pointer-events: none;
    transition: all 0.9s ease-in-out;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: whitesmoke;
    filter: blur(30px);            
    transition: all 0.9s ease-in-out;
}

p {
    margin: 70px;
    padding: 0;
    position: relative;
    font-size: 18px;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    color:rgb(76, 0, 255);
    filter: blur(0px);
    transition: all 0.9s ease-in-out;
}

p:hover {
    filter: blur(3px);
    cursor: pointer;
}

.disappear {
    opacity: 0;
    pointer-events: none;
}

.disappearDEF {
    opacity: 0;
    pointer-events: none;
}
/*-------------------------BOTTOM NOTE-------------------------*/
.note {
    text-align: center;
    padding-top: 4vh;
    width: 90vw;
    margin: auto;
}

.notesmall{
    position: relative;  
    transform: translate(0, 0);
}

#bottomnote {
    position: relative;
}
/*-------------------------ARCHIVE-------------------------*/
#alt_parent_div {
    position: relative;
    width: fit-content; 
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 2.8vh;
    padding-bottom: 4vh;
    transition: all 0.9s ease-in-out;
    z-index: 6;
}

h5 {
    padding: 0;
    margin: 10px;
    position: relative;
    font-size: 18px;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    color:rgb(76, 0, 255);
    filter: blur(0px);
    transition: all 0.9s ease-in-out;
}

h5:hover {
    filter: blur(3px);
}

#alt_parent_div:hover {
    cursor: pointer;
}
/*-------------------------CONTACT-------------------------*/
#parent_div_butnodisappear {
    position: fixed;
    width: 650px; 
    height: 240px; 
    padding: 60px; 
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease-in-out;
    z-index: 6;
}

.contact {
    position: relative;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    padding-top: 90px;
    font-size: 35px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
}
/*-------------------------DOWNLOAD-------------------------*/
.check {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-8vh, -23vh);
    height: 20vh;
    width: 15vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
}

}

/*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN<980px..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (max-width: 980px) and (min-width: 576.1px){

/*-------------------------MENU-------------------------*/  
.title {
    width: fit-content;
    padding-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.9s ease-in-out;
    z-index:3;
}

.menu {
    position: relative;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    font-size: 50px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
}

.menu span {
    background-color: rgb(195, 195, 195);
    transition: all 0.9s ease-in-out;
}

.noindex {
    display: none;
}

/*HOVER*/
.menu:hover {
    filter: none;
}

.menu span:hover {
    filter: none;
    cursor: pointer;
}

.menu.non:hover {
    filter: none;
}

.menu.non span:hover {
    filter: none;
}
/*-------------------------DIV content-------------------------*/
.item {
    width:fit-content;
    height: fit-content;
    vertical-align:middle;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding-top: 2.8vh;
    padding-bottom: 4vh;
    z-index:1;
}
/*-------------------------VISUAL content-------------------------*/
img {
    margin: auto;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
}

video {
    background-color: black;
    margin: auto;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
}

.play1 {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-50px, -190px);
    height: 80px;
    width: 120px; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
    filter: none;
}

.play2 {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-60px, -190px);
    height: 80px;
    width: 120px; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
    filter: none;
}

.portrait1 {
    height: auto;
    width: 300px;
}
.portrait2 {
    height: 600px;
    width: auto;
}
.portrait3 {
    height: auto;
    width: 250px;
}

.landscape1 {
    height: 300px;
    width: auto;
}
.landscape2 {
    height: 300px;
    width: auto;
}

.first.portrait1 {
    margin-top: 0;
}
.first.landscape1 {
    margin-top: 0;
}
.first.landscape2 {
    margin-top: 0;
}
/*BEHAVIOR*/
@keyframes changewidth {
    from {
        transform: rotate(-2.5deg);
    }
    to {
        transform: rotate(2.5deg);
    }
}

.turnshine {
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: changewidth ease-in-out 3s alternate infinite;
    animation-play-state: running;
}

.turnshinepaused {
    animation-play-state: paused;
    filter: none;
}

.turnshine:hover {
    cursor: pointer;
}

.toblur:hover {
    filter: none;
}

/*ONCLICK*/
.portrait1.scaled {
    width: 300px;
}
.portrait2.scaled {
    height: 600px;
}

.landscape1.scaled {
    height: 300px;
}
.landscape2.scaled {
    height: 300px;
}
/*-------------------------COMMENTS-------------------------*/
h6 {
    position : absolute;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    padding: 1.5vh;
    font-size: 18px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
    opacity: 0;
    cursor: default;
}

h6 span {
    background-color: rgb(202, 202, 202);
    transition: all 0.9s ease-in-out;
}

h6.appear {
    opacity:1
}

h6.appear span{
    opacity:1
}
/*-------------------------DESCRIPTION-------------------------*/
#parent_div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease-in-out;
    z-index: 6;
    max-width: 95vw;
    height: fit-content;
}

.stretchingonphone {
    width: 10px;
    height: 99vh;
    opacity: 0;
    pointer-events: none;
    transition: all 0.9s ease-in-out;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: whitesmoke;
    filter: blur(30px);            
    transition: all 0.9s ease-in-out;
}

p {
    margin: 70px;
    padding: 0;
    position: relative;
    font-size: 18px;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    color:rgb(76, 0, 255);
    filter: blur(0px);
    transition: all 0.9s ease-in-out;
}

p:hover {
    filter: none;
    cursor: pointer;
}

.disappear {
    opacity: 0;
    pointer-events: none;
}

.disappearDEF {
    opacity: 1;
}
/*-------------------------BOTTOM NOTE-------------------------*/
.note {
    text-align: center;
    padding-top: 4vh;
    width: 90vw;
    margin: auto;
}

.notesmall{
    position: absolute; 
    bottom: 0px; 
    left: 50%; 
    transform: translate(-50%, 0);
}

#bottomnote {
    position: relative;
}
/*-------------------------ARCHIVE-------------------------*/
#alt_parent_div {
    position: relative;
    width: fit-content; 
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 2.8vh;
    padding-bottom: 4vh;
    transition: all 0.9s ease-in-out;
    z-index: 6;
}

h5 {
    padding: 0;
    margin: 10px;
    position: relative;
    font-size: 18px;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    color:rgb(76, 0, 255);
    filter: none;
    transition: all 0.9s ease-in-out;
}

h5:hover {
    filter: none;
}

#alt_parent_div:hover {
    cursor: pointer;
}
/*-------------------------CONTACT-------------------------*/
#parent_div_butnodisappear {
    position: fixed;
    width: 500px; 
    height: 170px; 
    padding: 60px; 
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.9s ease-in-out;
    z-index: 6;
}

.contact {
    position: relative;
    font-family: Serif;
    font-style: oblique;
    font-weight: bold;
    margin: auto;
    padding-top: 90px;
    font-size: 26px;
    color: rgb(76, 0, 255);
    transition: all 0.9s ease-in-out;
}
/*-------------------------DOWNLOAD-------------------------*/
.check {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-50px, -150px);
    height: 120px;
    width: 90px; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
}

}

/*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN<576px..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (max-width: 576px) and (min-width: 350.1px) {

    html {
        background: repeat center top fixed;
        background-size: 100%;
    } 

    /*-------------------------MENU-------------------------*/  
    .title {
        width: fit-content;
        padding-bottom: 8px;
        margin-left: auto;
        margin-right: auto;
        transition: all 0.9s ease-in-out;
        z-index:3;
    }
    
    .menu {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        font-size: 35px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    
    .menu span {
        background-color: rgb(195, 195, 195);
        transition: all 0.9s ease-in-out;
    }

    .noindex {
        display: none;
    }
    
    /*HOVER*/
    .menu:hover {
        filter: none;
    }
    
    .menu span:hover {
        filter: none;
        cursor: pointer;
    }

    .menu.non:hover {
        filter: none;
    }
    
    .menu.non span:hover {
        filter: none;
    }
    /*-------------------------DIV content-------------------------*/
    .item {
        width:fit-content;
        height: fit-content;
        vertical-align:middle;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        z-index:1;
    }
    /*-------------------------VISUAL content-------------------------*/
    img {
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    video {
        background-color: black;
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    .play1 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-35px, -115px);
        height: 50px;
        width: 75px; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: blur(0px);
    }
    
    .play2 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-35px, -115px);
        height: 50px;
        width: 75px; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: blur(0px);
    }

    .portrait1 {
        height: auto;
        width: 180px;
    }
    .portrait2 {
        height: 350px;
        width: auto;
    }
    .portrait3 {
        height: auto;
        width: 150px;
    }
    
    .landscape1 {
        height: 180px;
        width: auto;
    }
    .landscape2 {
        height: 180px;
        width: auto;
    }
    
    .first.portrait1 {
        margin-top: 0;
    }
    .first.landscape1 {
        margin-top: 0;
    }
    .first.landscape2 {
        margin-top: 0;
    }
    
    /*BEHAVIOR*/
    @keyframes changewidth {
        from {
            transform: rotate(-2.5deg);
        }
        to {
            transform: rotate(2.5deg);
        }
    }
    
    .turnshine {
        display: block;
        margin-left: auto;
        margin-right: auto;
        animation: changewidth ease-in-out 3s alternate infinite;
        animation-play-state: running;
    }
    
    .turnshinepaused {
        animation-play-state: paused;
        filter: none;
    }

    .turnshine:hover {
        cursor: pointer;
    }
    
    .toblur:hover {
        filter: none;
    }
    
    /*ONCLICK*/
    .portrait1.scaled {
        width: 180px;
    }
    .portrait2.scaled {
        height: 350px;
    }
    
    .landscape1.scaled {
        height: 180px;
    }
    .landscape2.scaled {
        height: 180px;
    }

    /*-------------------------COMMENTS-------------------------*/
    h6 {
        position : absolute;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding: 1.5vh;
        font-size: 13px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
        opacity: 0;
        cursor: default;
    }
    
    h6 span {
        background-color: rgb(202, 202, 202);
        transition: all 0.9s ease-in-out;
    }
    
    h6.appear {
        opacity:1
    }
    
    h6.appear span{
        opacity:1
    }
    /*-------------------------DESCRIPTION-------------------------*/
    #parent_div {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
        max-width: 98vw;
        height: fit-content;
    }
    
    .stretchingonphone {
        width: 10px;
        height: 99vh;
        opacity: 0;
        pointer-events: none;
        transition: all 0.9s ease-in-out;
    }
    
    #background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: whitesmoke;
        filter: blur(30px);            
        transition: all 0.9s ease-in-out;
    }
    
    p {
        margin: 70px;
        padding: 0;
        position: relative;
        font-size: 13px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    p:hover {
        cursor: pointer;
    }
    
    .disappear {
        opacity: 0;
        pointer-events: none;
    }

    .disappearDEF {
        opacity: 1;
    }
    /*-------------------------BOTTOM NOTE-------------------------*/
    .note {
        text-align: center;
        padding-top: 4vh;
        width: 97vw;
        margin: auto;
    }

    .notesmall{
        position: absolute; 
        bottom: 0px; 
        left: 50%; 
        transform: translate(-50%, 0);
    }
    
    #bottomnote {
        position: relative;
    }
    /*-------------------------ARCHIVE-------------------------*/
    #alt_parent_div {
        position: relative;
        width: fit-content; 
        height: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    h5 {
        padding: 0;
        margin: 10px;
        position: relative;
        font-size: 18px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    h5:hover {
        filter: none;
    }
    
    #alt_parent_div:hover {
        cursor: pointer;
    }
    /*-------------------------CONTACT-------------------------*/
    #parent_div_butnodisappear {
        position: fixed;
        width: 300px; 
        height: 115px; 
        padding: 60px; 
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    .contact {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding-top: 90px;
        font-size: 16px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    /*-------------------------DOWNLOAD-------------------------*/
    .check {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-27px, -93px);
        height: 75px;
        width: 50px; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
    }

    }

    /*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN<350px..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (max-width: 350px) {

    html {
        background: repeat center top fixed;
        background-size: 100%;
    } 

    /*-------------------------MENU-------------------------*/  
    .title {
        width: fit-content;
        padding-bottom: 8px;
        margin-left: auto;
        margin-right: auto;
        transition: all 0.9s ease-in-out;
        z-index:3;
    }
    
    .menu {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        font-size: 35px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    
    .menu span {
        background-color: rgb(195, 195, 195);
        transition: all 0.9s ease-in-out;
    }
    
    .noindex {
        display: none;
    }

    /*HOVER*/
    .menu:hover {
        filter: none;
    }
    
    .menu span:hover {
        filter: none;
        cursor: pointer;
    }

    .menu.non:hover {
        filter: none;
    }
    
    .menu.non span:hover {
        filter: none;
    }
    /*-------------------------DIV content-------------------------*/
    .item {
        width:fit-content;
        height: fit-content;
        vertical-align:middle;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        z-index:1;
    }
    /*-------------------------VISUAL content-------------------------*/
    img {
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    video {
        background-color: black;
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    .play1 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-35px, -105px);
        height: 50px;
        width: 75px; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: blur(0px);
    }
    
    .play2 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-35px, -105px);
        height: 50px;
        width: 75px; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: blur(0px);
    }

    .portrait1 {
        height: auto;
        width: 150px;
    }
    .portrait2 {
        height: 300px;
        width: auto;
    }
    .portrait3 {
        height: auto;
        width: 130px;
    }
    
    .landscape1 {
        height: 150px;
        width: auto;
    }
    .landscape2 {
        height: 150px;
        width: auto;
    }
    
    .first.portrait1 {
        margin-top: 0;
    }
    .first.landscape1 {
        margin-top: 0;
    }
    .first.landscape2 {
        margin-top: 0;
    }
    
    /*BEHAVIOR*/
    @keyframes changewidth {
        from {
            transform: rotate(-2.5deg);
        }
        to {
            transform: rotate(2.5deg);
        }
    }
    
    .turnshine {
        display: block;
        margin-left: auto;
        margin-right: auto;
        animation: changewidth ease-in-out 3s alternate infinite;
        animation-play-state: running;
    }
    
    .turnshinepaused {
        animation-play-state: paused;
        filter: none;
    }
    
    .turnshine:hover {
        cursor: pointer;
    }

    .toblur:hover {
        filter: none;
    }
    
    /*ONCLICK*/
    .portrait1.scaled {
        width: 150px;
    }
    .portrait2.scaled {
        height: 300px;
    }
    
    .landscape1.scaled {
        height: 150px;
    }
    .landscape2.scaled {
        height: 150px;
    }

    /*-------------------------COMMENTS-------------------------*/
    h6 {
        position : absolute;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding: 1.5vh;
        font-size: 13px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
        opacity: 0;
        cursor: default;
    }
    
    h6 span {
        background-color: rgb(202, 202, 202);
        transition: all 0.9s ease-in-out;
    }
    
    h6.appear {
        opacity:1
    }
    
    h6.appear span{
        opacity:1
    }
    /*-------------------------DESCRIPTION-------------------------*/
    #parent_div {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
        max-width: 99vw;
        height: fit-content;
    }
    
    .stretchingonphone {
        width: 10px;
        height: 99vh;
        opacity: 0;
        pointer-events: none;
        transition: all 0.9s ease-in-out;
    }
    
    #background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: whitesmoke;
        filter: blur(30px);            
        transition: all 0.9s ease-in-out;
    }
    
    p {
        margin: 70px;
        padding: 0;
        position: relative;
        font-size: 10px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    p:hover {
        cursor: pointer;
    }
    
    .disappear {
        opacity: 0;
        pointer-events: none;
    }

    .disappearDEF {
        opacity: 1;
    }

    /*-------------------------BOTTOM NOTE-------------------------*/
    .note {
        text-align: center;
        padding-top: 4vh;
        width: 90vw;
        margin: auto;
    }

    .notesmall{
        position: absolute; 
        bottom: 0px; 
        left: 50%; 
        transform: translate(-50%, 0);
    }
    
    #bottomnote {
        position: relative;
    }
    /*-------------------------ARCHIVE-------------------------*/
    #alt_parent_div {
        position: relative;
        width: fit-content; 
        height: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    h5 {
        padding: 0;
        margin: 10px;
        position: relative;
        font-size: 17px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    h5:hover {
        filter: none;
    }
    
    #alt_parent_div:hover {
        cursor: pointer;
    }
    /*-------------------------CONTACT-------------------------*/
    #parent_div_butnodisappear {
        position: fixed;
        width: 240px; 
        height: 90px; 
        padding: 60px; 
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    .contact {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding-top: 90px;
        font-size: 13px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    /*-------------------------DOWNLOAD-------------------------*/
    .check {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-27px, -93px);
        height: 75px;
        width: 50px; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
    }

    }

    /*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN>1160px<15/10..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (min-width: 1160px) and (max-aspect-ratio: 15/10) and (min-aspect-ratio: 12/11) {

    .grid {
        transform: translate(0, 60px);
        width: 92vw;
        margin: 0 auto;
        /*border: 1px solid rgb(255, 0, 0);*/
        display: grid;
        grid-template-columns: repeat(auto-fill, 27vw);
        grid-template-rows: repeat(auto-fill, 27vw);
        grid-row-gap: 2vw;
        grid-column-gap: 5vw;
        justify-content: right;
    }
    .griditem {
      height: 27vw;
      width: 27vw;
      /*border: 1px solid rgb(255, 0, 0);*/
    }
    
    .gridimg {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    /*-------------------------MENU-------------------------*/  
    .title {
        width: fit-content;
        padding-bottom: 8px;
        position: fixed;
        transition: all 0.9s ease-in-out;
        z-index:3;
    }
    
    .menu {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        font-size: 40px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    
    .menu span {
        background-color: rgb(195, 195, 195);
        transition: all 0.9s ease-in-out;
    }
    
    .noindex {
        display: block;
    }
    
    /*HOVER*/
    .menu:hover {
        filter: none;
    }
    
    .menu span:hover {
        filter: none;
        cursor: pointer;
    }
    
    .menu.non:hover {
        filter: none;
    }
    
    .menu.non span:hover {
        filter: none;
    }
    /*-------------------------DIV content-------------------------*/
    .item {
        width:fit-content;
        height: fit-content;
        vertical-align:middle;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        z-index:1;
    }
    /*-------------------------VISUAL content-------------------------*/
    img {
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    video {
        background-color: black;
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    .play1 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-15vh, -46vh);
        height: 20vh;
        width: 30vh; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: none;
    }
    
    .play2 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-15vh, -45vh);
        height: 20vh;
        width: 30vh; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: none;
    }
    
    .portrait1 {
        height: auto;
        width: 70vh;
    }
    .portrait2 {
        height: 92vh;
        width: auto;
    }
    .portrait3 {
        height: auto;
        width: 40vh;
    }
    
    .landscape1 {
        height: 70vh;
        width: auto;
    }
    .landscape2 {
        height: 70vh;
        width: auto;
    }
    
    .first.portrait1 {
        margin-top: 4vh;
    }
    .first.landscape1 {
        margin-top: 10vh;
    }
    .first.landscape2 {
        margin-top: 15vh;
    }
    
    /*BEHAVIOR*/
    @keyframes changewidth {
        from {
            transform: rotate(-2.5deg);
        }
        to {
            transform: rotate(2.5deg);
        }
    }
    
    .turnshine {
        display: block;
        margin-left: auto;
        margin-right: auto;
        animation: changewidth ease-in-out 3s alternate infinite;
        animation-play-state: running;
    }
    
    .turnshinepaused {
        animation-play-state: paused;
        filter: none;
    }
    
    .turnshine:hover {
        cursor: pointer;
    }

    .toblur:hover {
        filter: none;
    }
    
    /*ONCLICK*/
    .portrait1.scaled {
        width: 65vh;
    }
    .portrait2.scaled {
        height: 85vh;
    }
    
    .landscape1.scaled {
        height: 65vh;
    }
    .landscape2.scaled {
        height: 65vh;
    }
    /*-------------------------COMMENTS-------------------------*/
    h6 {
        position : absolute;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding: 1.5vh;
        font-size: 18px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
        opacity: 0;
        cursor: default;
    }
    
    h6 span {
        background-color: rgb(202, 202, 202);
        transition: all 0.9s ease-in-out;
    }
    
    h6.appear {
        opacity:1
    }
    
    h6.appear span{
        opacity:1
    }
    /*-------------------------DESCRIPTION-------------------------*/
    #parent_div {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
        height: fit-content;
    }
    
    .stretchingonphone {
        width: 10px;
        height: 0.1vh;
        opacity: 0;
        pointer-events: none;
        transition: all 0.9s ease-in-out;
    }

    #background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: whitesmoke;
        filter: blur(30px);            
        transition: all 0.9s ease-in-out;
    }
    
    p {
        margin: 70px;
        padding: 0;
        position: relative;
        font-size: 18px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    p:hover {
        filter: blur(3px);
        cursor: pointer;
    }
    
    .disappear {
        opacity: 0;
        pointer-events: none;
    }

    .disappearDEF {
        opacity: 0;
        pointer-events: none;
    }

    /*-------------------------BOTTOM NOTE-------------------------*/
    .note {
        text-align: center;
        padding-top: 4vh;
        width: 90vw;
        margin: auto;
    }
    
    .notesmall{
        position: relative;  
        transform: translate(0, 0);
    }
    
    #bottomnote {
        position: relative;
    }
    /*-------------------------ARCHIVE-------------------------*/
    #alt_parent_div {
        position: relative;
        width: fit-content; 
        height: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    h5 {
        padding: 0;
        margin: 10px;
        position: relative;
        font-size: 18px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: none;
        transition: all 0.9s ease-in-out;
    }
    
    h5:hover {
        filter: none;
    }
    
    #alt_parent_div:hover {
        cursor: pointer;
    }
    /*-------------------------CONTACT-------------------------*/
    #parent_div_butnodisappear {
        position: fixed;
        width: 770px; 
        height: 270px; 
        padding: 60px; 
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    .contact {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding-top: 90px;
        font-size: 40px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }   
/*-------------------------DOWNLOAD-------------------------*/
.check {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-8vh, -24vh);
    height: 20vh;
    width: 15vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
}

    }

    /*++++++++++++++++++++++++++++++++++++++++++++++..SCREEN>900px<12/11..+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

@media only screen and (min-width: 900px) and (max-aspect-ratio: 12/11) {

    .grid {
        transform: translate(0, 60px);
        width: 92vw;
        margin: 0 auto;
        /*border: 1px solid rgb(255, 0, 0);*/
        display: grid;
        grid-template-columns: repeat(auto-fill, 40vw);
        grid-template-rows: repeat(auto-fill, 40vw);
        grid-row-gap: 2vw;
        grid-column-gap: 5vw;
        justify-content: right;
    }
    .griditem {
      height: 40vw;
      width: 40vw;
      /*border: 1px solid rgb(255, 0, 0);*/
    }
    
    .gridimg {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    /*-------------------------MENU-------------------------*/  
    .title {
        width: fit-content;
        padding-bottom: 8px;
        position: fixed;
        transition: all 0.9s ease-in-out;
        z-index:3;
    }
    
    .menu {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        font-size: 40px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    
    .menu span {
        background-color: rgb(195, 195, 195);
        transition: all 0.9s ease-in-out;
    }
    
    .noindex {
        display: block;
    }
    
    /*HOVER*/
    .menu:hover {
        filter: blur(3px);
    }
    
    .menu span:hover {
        filter: blur(3px);
        cursor: pointer;
    }
    
    .menu.non:hover {
        filter: none;
    }
    
    .menu.non span:hover {
        filter: none;
    }
    /*-------------------------DIV content-------------------------*/
    .item {
        width:fit-content;
        height: fit-content;
        vertical-align:middle;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        z-index:1;
    }
    /*-------------------------VISUAL content-------------------------*/
    img {
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    video {
        background-color: black;
        margin: auto;
        box-sizing: border-box;
        transition: all 1s ease-in-out;
    }
    
    .play1 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-7.5vh, -20vh);
        height: 10vh;
        width: 15vh; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: none;
    }
    
    .play2 {
        position: absolute;
        pointer-events: none;
        padding: 2vh;
        transform: translate(-7.5vh, -20vh);
        height: 10vh;
        width: 15vh; 
        transition: all 1s ease-in-out;
        background-color:rgb(195, 195, 195);
        filter: none;
    }
    
    .portrait1 {
        height: auto;
        width: 30vh;
    }
    .portrait2 {
        height: 45vh;
        width: auto;
    }
    .portrait3 {
        height: auto;
        width: 30vh;
    }
    
    .landscape1 {
        height: 30vh;
        width: auto;
    }
    .landscape2 {
        height: 30vh;
        width: auto;
    }
    
    .first.portrait1 {
        margin-top: 4vh;
    }
    .first.landscape1 {
        margin-top: 10vh;
    }
    .first.landscape2 {
        margin-top: 15vh;
    }
    
    /*BEHAVIOR*/
    @keyframes changewidth {
        from {
            transform: rotate(-2.5deg);
        }
        to {
            transform: rotate(2.5deg);
        }
    }
    
    .turnshine {
        display: block;
        margin-left: auto;
        margin-right: auto;
        animation: changewidth ease-in-out 3s alternate infinite;
        animation-play-state: running;
    }
    
    .turnshinepaused {
        animation-play-state: paused;
        filter: none;
    }

    .turnshine:hover {
        cursor: pointer;
    }
    
    .toblur:hover {
        filter: none;
    }
    
    /*ONCLICK*/
    .portrait1.scaled {
        width: 30vh;
    }
    .portrait2.scaled {
        height: 45vh;
    }
    
    .landscape1.scaled {
        height: 30vh;
    }
    .landscape2.scaled {
        height: 30vh;
    }
    /*-------------------------COMMENTS-------------------------*/
    h6 {
        position : absolute;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding: 1.5vh;
        font-size: 18px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
        opacity: 0;
        cursor: default;
    }
    
    h6 span {
        background-color: rgb(202, 202, 202);
        transition: all 0.9s ease-in-out;
    }
    
    h6.appear {
        opacity:1
    }
    
    h6.appear span{
        opacity:1
    }
    /*-------------------------DESCRIPTION-------------------------*/
    #parent_div {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
        height: fit-content;
    }

    .stretchingonphone {
        width: 10px;
        height: 0.1vh;
        opacity: 0;
        pointer-events: none;
        transition: all 0.9s ease-in-out;
    }
    
    #background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: whitesmoke;
        filter: blur(30px);            
        transition: all 0.9s ease-in-out;
    }
    
    p {
        margin: 70px;
        padding: 0;
        position: relative;
        font-size: 18px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    p:hover {
        filter: none;
        cursor: pointer;
    }
    
    .disappear {
        opacity: 0;
        pointer-events: none;
    }

    .disappearDEF {
        opacity: 0;
        pointer-events: none;
    }
    /*-------------------------BOTTOM NOTE-------------------------*/
    .note {
        text-align: center;
        padding-top: 4vh;
        width: 90vw;
        margin: auto;
    }
    
    .notesmall{
        position: relative;  
        transform: translate(0, 0);
    }
    
    #bottomnote {
        position: relative;
    }
    /*-------------------------ARCHIVE-------------------------*/
    #alt_parent_div {
        position: relative;
        width: fit-content; 
        height: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: 2.8vh;
        padding-bottom: 4vh;
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    h5 {
        padding: 0;
        margin: 10px;
        position: relative;
        font-size: 18px;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        color:rgb(76, 0, 255);
        filter: blur(0px);
        transition: all 0.9s ease-in-out;
    }
    
    h5:hover {
        filter: none;
    }
    
    #alt_parent_div:hover {
        cursor: pointer;
    }
    /*-------------------------CONTACT-------------------------*/
    #parent_div_butnodisappear {
        position: fixed;
        width: 770px; 
        height: 270px; 
        padding: 60px; 
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.9s ease-in-out;
        z-index: 6;
    }
    
    .contact {
        position: relative;
        font-family: Serif;
        font-style: oblique;
        font-weight: bold;
        margin: auto;
        padding-top: 90px;
        font-size: 40px;
        color: rgb(76, 0, 255);
        transition: all 0.9s ease-in-out;
    }
    /*-------------------------DOWNLOAD-------------------------*/
.check {
    position: absolute;
    pointer-events: none;
    padding: 2vh;
    transform: translate(-6.5vh, -18vh);
    height: 16vh;
    width: 12vh; 
    transition: all 1s ease-in-out;
    background-color:rgb(195, 195, 195);
}
    
    }