.titled_youtube_wrap{
    width: 100%;
    margin: 0 auto;
    display: flex;
}
.titled_youtube_wrap .title{
    width: 40px;
    margin-right: 5px;
    position: relative;
    font-size: 1.8em;
    align-self: flex-end;
}
.titled_youtube_wrap .title .h{
    transform: rotate(-90deg);
    font-family: 'candara';
    font-size: 1.5em;
    color: rgb(24,24,24);
    margin: 0 0 10px 0;
    font-weight: lighter;
}
.titled_youtube_wrap .video{
    width: 100%;
}
.titled_youtube_wrap.ohne_video .video{
    height: 500px;
    background-color: grey;
}
/*---Backend------------------------------------------------------------------------------------------------------------*/
.logged_in .titled_youtube_wrap{
    flex-direction: column;
}
.logged_in .titled_youtube_wrap .title{
    width: 100%;
}
.logged_in .titled_youtube_wrap .title .h{
    position: relative;
    transform: none;
    transform-origin: unset;
    top: unset;
    right: unset;
    width: 100%;
}
.logged_in .titled_youtube_wrap .video{
    height: auto;
    width: 100%;
}
@media screen and (max-width:1000px){
    .titled_youtube_wrap{
        margin: 40px auto 0;
    }
}
@media screen and (max-width:600px){
    .titled_youtube_wrap .title .h{
        font-size: 1em;
    }
}