:root {
	--prim-color: #060052;
	--sec-color: #00B5B5;
    --ratio1: 70%;
    --ratio2: calc(100% - var(--ratio1))
}

body {
        background-color: azure;
        padding: 0;
        margin: 0;
        overflow: hidden;
}

.wrapper {
    background-color: #ca28b1;
	display: flex;
}

.content {
    background-color: #a0f8b1;
    display: block;
    margin: 0;
    padding: 0;
}


.abriss_wrapper {
    background-color: #fab0bf;
    display: block;
    margin: 0;
    padding: 0;
    display: flex;
}

.animation {
    transform: translateX(0%);
    transition: transform .5s ease-out;
    display: flex;
}

.animation:active {
    transform: translateX(100%);
    transition: transform .5s ease-out;
}

@media screen and (orientation: portrait) {
    .wrapper {
    height: 100vh;
	flex-direction: column;
}

.content {
    width: 100%;
    height: var(--ratio1);

}


.abriss_wrapper {
    width: 100%;
    height: var(--ratio2);
        flex-direction: row;


}
    
.animation:active {
    transform: translateY(100%);
    transition: transform .5s ease-in-out;
}
    
.abriss1 {
    background-color: darkmagenta;
    height:100%;
    width:25%;
}
.abriss2 {
    background-color:firebrick;
    height:100%;
    width:25%;
}
.abriss3 {
    background-color: darkmagenta;
    height:100%;
    width:25%;
}
.abriss4 {
    background-color:firebrick;
    height:100%;
    width:25%;
}
}
@media screen and (orientation: landscape) {
    .wrapper {
    height: 100vh;
	flex-direction: row;
}

.content {
    width: var(--ratio1);
    height: 100%;

}


.abriss_wrapper {
    width: var(--ratio2);
    height: 100%;
        flex-direction: column;


}
    
    .animation:active {
    transform: translateX(100%);
    transition: transform .5s ease-in-out;
}
    
.abriss1 {
    background-color: darkmagenta;
    height:25%;
    width:100%;
}
.abriss2 {
    background-color:firebrick;
    height:25%;
    width:100%;
}
.abriss3 {
    background-color: darkmagenta;
    height:25%;
    width:100%;
}
.abriss4 {
    background-color:firebrick;
    height:25%;
    width:100%;
}
      
}