main {
	/*box*/
	padding: 0px !important;
}

section{
    /*box*/
    width:100%;
    height:100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/*--------------------------------------------------------------------------*\
	Images
\*--------------------------------------------------------------------------*/

img {
    /*box*/
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    /*transition*/
    transition: opacity 0.5s ease;
}

.img-europaeuropa-1 {
    z-index:2;
}

.img-europaeuropa-2 {
    z-index:1;
}

img:nth-of-type(2),
img:nth-of-type(4) {
    /*box*/
    display:none;
}

/* Desktop Landscape */
@media (orientation: portrait) {
    img:nth-of-type(1),
    img:nth-of-type(3) {
        /*box*/
        display:none;
    }

    img:nth-of-type(2),
    img:nth-of-type(4) {
        /*box*/
        display:block;
    }
}

/*--------------------------------------------------------------------------*\
	    Hover on aside
\*--------------------------------------------------------------------------*/

.is-img-toggle .img-europaeuropa-1 {
    /*box*/
    opacity:0;
}

.is-img-toggle svg {
    /*background*/
    fill:black;
}

/*--------------------------------------------------------------------------*\
	Texts
\*--------------------------------------------------------------------------*/

h1,p,aside {
    /*box*/
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);

    /*text*/
    color:white;
    z-index: 3;

    /*transition*/
    transition: color 0.5s ease;
}

/*--------------------------------------------------------------------------*\
        Title : "Europa,Europa."
\*--------------------------------------------------------------------------*/

h1 {
    /*box*/
    transform-origin: center center;

    /*text*/
    font-size: 70px;
    letter-spacing: -6px;
}

/*--------------------------------------------------------------------------*\
        Text : "Photographies etc."
\*--------------------------------------------------------------------------*/

p {
    /*box*/
    position: absolute;
    top: 100vh;
    right: 0px;
    transform-origin: top right;
    width:100vh;
    padding-left: 10px;
    padding-top: 5px;

    /*text*/
    font-size: 12px;
}

/*--------------------------------------------------------------------------*\
        Footer aside : Pictograms, coorodinates
\*--------------------------------------------------------------------------*/

aside {
    /*box*/
    position: absolute;
    bottom: 100vh;
    left: 0px;
    transform-origin: bottom left;
    width:100vh;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
}

aside>a {
    /*box*/
    width:100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    overflow-x: hidden;
    height:45px;

    /*text*/
    font-size: 12px;
}

h2 {
    /*box*/
    margin-bottom: -4px;

    /*text*/
    font-size: 10px;
    letter-spacing:-0.5px;
    white-space: nowrap;
}

svg {
    /*background*/
    fill:white;

    /*transition*/
    transition: fill 0.5s ease;
}

aside>a>div:nth-child(1)>svg {
    /*box*/
    margin-bottom: -2px;
    height:70px;
    transform: rotate(90deg) translateX(27px) translateY(-30px);
}

aside>a>div:nth-child(2) svg {
    /*box*/
    margin-bottom: 0px;
    margin-left:1px;
    margin-right:1px;
    height:13px;
    width:13px;
}

/*--------------------------------------------------------------------------*\
	    Hover on aside
\*--------------------------------------------------------------------------*/

.is-img-toggle h1,
.is-img-toggle p,
.is-img-toggle aside {
    /*text*/
    color:black;
}